Elite indicators :) - page 807

 
mladen:
Found these (it was really long time ago - these were made in 2007) :

mtf.ma_basic.mq4

mtf.macd_basic.mq4

Anyway, these are working the way you described. Try them out

That was really very special Mladen - thank you so much.

Will let you know hoe I found them.

Best wishes,

 
ValeoFX:
That was really very special Mladen - thank you so much.

Will let you know hoe I found them.

Best wishes,

Happy trading

 

This is volatility quality candles, added 2 ma's to make it similar to the separate window version, and arrows/alerts on candle color change.

 

mladen,

Can you please tell me whether these 2 indicators repaint, as I continue my search for only non repainting helpful indicators.

Thanks so much for all your help to us all, as always.

traderdp

David

Files:
i-g-cci2.mq4  4 kb
i-g.mq4  5 kb
 
traderdp:
mladen,

Can you please tell me whether these 2 indicators repaint, as I continue my search for only non repainting helpful indicators.

Thanks so much for all your help to us all, as always.

traderdp

David

David

Yes. Both are repainting

 

mladen,

Thanks very much and I'm sorry for wasting your precious time looking at repainters,

traderdp

David

 
traderdp:
mladen,

Thanks very much and I'm sorry for wasting your precious time looking at repainters,

traderdp

David

David

Don't worry about the questions of that kind : better to check before using anything than to suffer some loses just because the checking was not done

Happy trading

 

Mladen

If sliding it into the EA is a problem could you make it a "stand alone trailing stop EA"?? Request #8044

Thank you

Ray

traderduke:
Mladen

I have this new Renko Trailing stop For Tradestation. I was wondering if its possible u could Make it "TS option 9" in my MT4 EA.

It takes you out of renko trade on the next brick reversal.

Thank You

Ray

Inputs:

RenkoTS (false), // Get the renko brick size ( bar size ) on the second bar of the chart

NumBarsTrail( 1 ) , // # of bricks -New Trailing Stop for REnko, see bottom

{new Renko Trailing Stop 6-01-2014}

if RenkoTS then begin

if CurrentBar = 2 then

RenkoBrickSize = Boxsize;

if MarketPosition 0 then begin //and TrailingStop = 0 then

TStop = EntryPrice - ( MarketPosition * NumBarsTrail * RenkoBrickSize );

end;

if MarketPosition = 1 then begin

TStop = MaxList( TStop, High - ( NumBarsTrail * RenkoBrickSize ) ) ; //change to use High

sell ("RTS1-LX") next bar at TStop stop ;

TLID = TL_New(Date, Time, TStop, Date[1], Time[1], TStop ) ;

TL_SetSize(TLID, 2 ) ;

end

else if MarketPosition = -1 then begin

TStop = MinList( TStop, Low + ( NumBarsTrail * RenkoBrickSize ) ) ; //change to use Low

buyToCover ("RTS1-SX") Next bar at TStop stop;

TLID = TL_New(Date, Time, TStop, Date[1], Time[1], TStop ) ;

TL_SetSize(TLID, 2 ) ;

end;

if MP[1] 0 and MP = 0 then begin

TStop = 0 ;

end ;
 
traderduke:
Mladen

If sliding it into the EA is a problem could you make it a "stand alone trailing stop EA"?? Request #8044

Thank you

Ray

Ray

Sorry. No EA coding for renko (for multiple reasons - one being the impossibility to test the EA and the other that so far I have seen 100 renkos and none worked the same as the other)

 
mrtools:
This is volatility quality candles, added 2 ma's to make it similar to the separate window version, and arrows/alerts on candle color change.

Thanks MrTools, this is a rather nifty little critter

Reason: