Re: MT4 Indicator requests and ideas
19861Is there a trade copier that makes it possible to copy trades over from Mt4 to a futures broker like Interactive brokers or Ninjatrader that anybody knows of?
Code: Select all
// This work is licensed under a Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0) https://creativecommons.org/licenses/by-nc-sa/4.0/
// © Zeiierman
//Copyright by Zeiierman.
//The information contained in my scripts/indicators/ideas does not constitute financial advice or a solicitation to buy or sell any securities of any type.
//I will not accept liability for any loss or damage, including without limitation any loss of profit, which may arise directly or indirectly from use of or reliance on such information.
//All investments involve risk, and the past performance of a security, industry, sector, market, financial product, trading strategy, or individual’s trading does not guarantee future results or returns.
//Investors are fully responsible for any investment decisions they make. Such decisions should be based solely on an evaluation of their financial circumstances, investment objectives, risk tolerance, and liquidity needs.
//My scripts/indicators/ideas are only for educational purposes!
//@version=4
study("GreedZone indicator ", overlay=true, shorttitle="GreedZone (Expo)")
source = input(ohlc4, title="Source", group="Source")
Low_period = input(30, title="Low Period", group="GreedZone Settings")
Stdev_period = input(50, title="Stdev Period", group="GreedZone Settings")
WMA = input(false, title="Use WMA instead of SMA?", group="Average Type")
// Condition One
FZ1 = (lowest(source,Low_period) - source)/lowest(source,Low_period)
AVG1 = sma(FZ1,Stdev_period)
if WMA
AVG1 := wma(FZ1,Stdev_period)
STDEV1 = stdev(FZ1,Stdev_period)
FZ1Limit = AVG1-STDEV1
// Condition Two
FZ2 = sma(source, Low_period)
AVG2 = sma(FZ2, Stdev_period)
if WMA
FZ2 := wma(source, Low_period)
AVG2 := wma(FZ2, Stdev_period)
STDEV2 = stdev(FZ2, Stdev_period)
FZ2Limit = AVG2+STDEV2
// GreedZone
Greedzone_Con = FZ1 < FZ1Limit and FZ2 > FZ2Limit
GreedZoneOpen = Greedzone_Con? low+tr:na
GreedZoneClose = Greedzone_Con? low+2*tr:na
plotcandle(GreedZoneOpen,GreedZoneOpen,GreedZoneClose,GreedZoneClose, color=#90EE90, bordercolor=color.green, title="GreedZone Candlesticks")
// Alerts
AlertCircle = input(true, title="Show Alert Circle?", group="Alerts")
Alert_Col = Greedzone_Con != Greedzone_Con[1] and AlertCircle? #90EE90 : na
plotshape(Greedzone_Con, style=shape.circle, location=location.abovebar, size=size.tiny, color=Alert_Col, title="Alert Circle")
alertcondition(Greedzone_Con != Greedzone_Con[1], title='GreedZone', message='GreedZone')
Code: Select all
// This work is licensed under a Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0) https://creativecommons.org/licenses/by-nc-sa/4.0/
// © Zeiierman
//Copyright by Zeiierman.
//The information contained in my scripts/indicators/ideas does not constitute financial advice or a solicitation to buy or sell any securities of any type.
//I will not accept liability for any loss or damage, including without limitation any loss of profit, which may arise directly or indirectly from use of or reliance on such information.
//All investments involve risk, and the past performance of a security, industry, sector, market, financial product, trading strategy, or individual’s trading does not guarantee future results or returns.
//Investors are fully responsible for any investment decisions they make. Such decisions should be based solely on an evaluation of their financial circumstances, investment objectives, risk tolerance, and liquidity needs.
//My scripts/indicators/ideas are only for educational purposes!
//@version=4
study("Fearzone (Expo) - Contrarian Indicator", overlay=true, shorttitle="FearZone (Expo)")
source = input(ohlc4, title="Source", group="Source")
High_period = input(30, title="High Period", group="Fearzone Settings")
Stdev_period = input(50, title="Stdev Period", group="Fearzone Settings")
WMA = input(true, title="Use WMA instead of SMA?", group="Average Type")
// Condition One
FZ1 = (highest(source,High_period) - source)/highest(source,High_period)
AVG1 = sma(FZ1,Stdev_period)
if WMA
AVG1 := wma(FZ1,Stdev_period)
STDEV1 = stdev(FZ1,Stdev_period)
FZ1Limit = AVG1+STDEV1
// Condition Two
FZ2 = sma(source, High_period)
AVG2 = sma(FZ2, Stdev_period)
if WMA
FZ2 := wma(source, High_period)
AVG2 := wma(FZ2, Stdev_period)
STDEV2 = stdev(FZ2, Stdev_period)
FZ2Limit = AVG2-STDEV2
// FearZone
Fearzone_Con = FZ1 > FZ1Limit and FZ2 < FZ2Limit
FearZoneOpen = Fearzone_Con? low-tr :na
FearZoneClose = Fearzone_Con? low-2*tr :na
plotcandle(FearZoneOpen,FearZoneOpen,FearZoneClose,FearZoneClose, color=#FC6C85, bordercolor=color.red, title="FearZone Candlesticks")
// Alerts
AlertCircle = input(true, title="Show Alert Circle?", group="Alerts")
Alert_Col = Fearzone_Con != Fearzone_Con[1] and AlertCircle? #FC6C85 : na
plotshape(Fearzone_Con, style=shape.circle, location=location.belowbar, size=size.tiny, color=Alert_Col, title="Alert Circles")
alertcondition(Fearzone_Con != Fearzone_Con[1], title='FearZone', message='FearZone')
Thats cool i know of something like it for mt4 let me search
bilbao wrote: Fri Apr 14, 2017 4:15 am TD Sequential indicator
What is it for?
Applying Tom DeMark’s TD Sequential serves the purpose of identifying a price point where an uptrend or a downtrend exhausts itself and reverses.
What are the main components of TD Sequential?
TD Sequential has two parts – TD Setup and TD Countdown.
- The first phase of TD Sequential starts with a TD Setup and is completed with a 9 count. When the 9 count is completed, it is at that point, a price pause, price pullback, or reversal is likely.
- It is also at that point where TD Sequential starts the second phase with TD Countdown and is completed with a 13 count. When the 13 count is recorded, it is at that point, a price pause, price pullback, or a reversal is likely.
Example charts:
- TD Buy Setup for Ebay (EBAY)
- TD Buy Countdown for Zynga (ZNGA)
- TD Sell Setup for Netflix (NFLX)
- TD Sell Countdown for Network Appliance (NTAP)
- The written explanation of each example is numbered in order.
Is this file possible?
Hi what do you like about this RSI compared to standard RSI? What's the difference