Could someone please add an option for max history bars to this TMA coral indicator, it freezes my pc because it loads in all the bars in the chart and my computer is a bit trashy
Attached File(s)
I will code your pivot EAs for no charge 28 replies
I will code your scalping EAs for no charge 163 replies
Oanda MT4 - Indicators and EAs not showing 2 replies
EAs and indicators relating to moutaki... 22 replies
InterbankFX has loaded its MT4 platform with custom EAs, indicators and scripts 1 reply
DislikedHi is there any coders here who can crack the key to this system it looks good. i have the system but you need the license key for it to work {image}Ignored
DislikedCould someone please add an option for max history bars to this TMA coral indicator,
it freezes my pc because it loads in all the bars in the chart and my computer is a bit trashyIgnored
Disliked{quote} This is great work. please can i find this kind of indicator in stochastic form. I will really be grateful. Thank you.Ignored
// © Dreadblitz
//@version=4
study(shorttitle="FLI", title="Follow Line Indicator", overlay=true)
//
BBperiod = input(defval = 21, title = "BB Period", type = input.integer, minval = 1)
BBdeviations = input(defval = 1.00, title = "BB Deviations", type = input.float, minval = 0.1, step=0.05)
UseATRfilter = input(defval = true, title = "ATR Filter", type = input.bool)
ATRperiod = input(defval = 5, title = "ATR Period", type = input.integer, minval = 1)
hl = input(defval = false, title = "Hide Labels", type = input.bool)
//
BBUpper=sma (close,BBperiod)+stdev(close, BBperiod)*BBdeviations
BBLower=sma (close,BBperiod)-stdev(close, BBperiod)*BBdeviations
//
TrendLine = 0.0
iTrend = 0.0
buy = 0.0
sell = 0.0
//
BBSignal = close>BBUpper? 1 : close<BBLower? -1 : 0
//
if BBSignal == 1 and UseATRfilter == 1
TrendLine:=low-atr(ATRperiod)
if TrendLine<TrendLine[1]
TrendLine:=TrendLine[1]
if BBSignal == -1 and UseATRfilter == 1
TrendLine:=high+atr(ATRperiod)
if TrendLine>TrendLine[1]
TrendLine:=TrendLine[1]
if BBSignal == 0 and UseATRfilter == 1
TrendLine:=TrendLine[1]
//
if BBSignal == 1 and UseATRfilter == 0
TrendLine:=low
if TrendLine<TrendLine[1]
TrendLine:=TrendLine[1]
if BBSignal == -1 and UseATRfilter == 0
TrendLine:=high
if TrendLine>TrendLine[1]
TrendLine:=TrendLine[1]
if BBSignal == 0 and UseATRfilter == 0
TrendLine:=TrendLine[1]
//
iTrend:=iTrend[1]
if TrendLine>TrendLine[1]
iTrend:=1
if TrendLine<TrendLine[1]
iTrend:=-1
//
buy:=iTrend[1]==-1 and iTrend==1 ? 1 : na
sell:=iTrend[1]==1 and iTrend==-1? 1 : na
//
plot(TrendLine, color=iTrend > 0?color.blue:color.red ,style=plot.style_line,linewidth=2,transp=0,title="Trend Line")
plotshape(buy == 1 and hl == false? TrendLine-atr(8) :na, text=':bomb:', style= shape.labelup, location=location.absolute, color=color.blue, textcolor=color.white, offset=0, transp=0,size=size.auto)
plotshape(sell == 1 and hl == false ?TrendLine+atr(8):na, text=':hammer:', style=shape.labeldown, location=location.absolute, color=color.red, textcolor=color.white, offset=0, transp=0,size=size.auto)
//
alertcondition(sell == 1 ,title="Sell",message="Sell")
alertcondition(buy == 1 ,title="Buy",message="Buy")
alertcondition(buy == 1 or sell == 1 ,title="Buy/Sell",message="Buy/Sell") Disliked{quote} Hi tonyjustcom I have sto dash. How is sto alert do you want and you want value or wingding etc.....Ignored
Disliked{quote} BB_Candles_Outside - signals candles outside the bbands - option for either candle body, or full candle wick - option to ignore consecutive signals for a new signal - full alerts {image} {file}Ignored
Disliked{quote} Thnks you. but are buy sell level similar? value in MT4 TV buy 1.0385 1.0402 sell 1.0545 1.0528 Observe by candle formation we can see the levels are quite different, not very much in number but in FX relation and with Leverage x Cap, is it not alot? does MT4 calculation based on sma, BB and atr, too? I think we ignore the BBperiod and BBdeviation correction in the MT4 halftrend without giving a reason. Could some experts confirm {image} {image}Ignored
The FollowLine indicator is a trend following indicator. The blue/red lines are activated when the price closes above the upper Bollinger bandor below the lower one. Once the trigger of the trend direction is made, the FollowLine will be placed at High or Low (depending of the trend). An ATR filter can be selected to place the line at a more distance level than the normal mode settled at candles Highs/Lows.
DislikedI have a request that is not that difficult but would make my trading a little easier. I developed this strategy after hearing an old school trader say that within the first 15 5M candles into the open of a market 90% of the time the market will either find it's high or low for the day. I spent weeks going back and testing this as well as live testing every morning. What I came up with for rules is this 1. Let first 15 5 Minute candles pass 2. I highlight those in a box and wait for candles to break either the bottom or top 3. I wait for one more...Ignored
This indicator provide two algorithms, Pivot Point and ATR, you can switch between the two algorithms at any time.
Pivot Point
the defaut is yersterday's prices, and there have a modified interface to set any price you need.
ATR:
The ATR value takes yesterday's value and the chart period is D1. it is represents recent market volatility.
by the input argument, can set the period of ATR.
User Inputs