TTM scalper - page 5

 
dasio:
Thank you.

I code it in this way and it's seems work.

string UltimoSwing(){

double temp = 0;

string Segnale;

int count =0;

datetime b1;

for(int i = 3 ; i < 1500 ; i++)

{

temp = iCustom(NULL,0,"TTM scalper",0,i);

if (temp != EMPTY_VALUE) count = count+1;

if(count == 1 && temp != EMPTY_VALUE) {b1=Time;}

if(count == 2) break;

}

int a =iBarShift(NULL,0,b1);

if(iCustom(NULL,0,"TTM scalper",0,a)!=EMPTY_VALUE){

double Previous=iCustom(NULL,0,"TTM scalper",2,1);

double Current=iCustom(NULL,0,"TTM scalper",2,2);

if(Previous !=Current && Current== -1) Segnale="Low";

if(Previous !=Current && Current== 1) Segnale="High";}

return(Segnale);

}

Noting to do. How i can do it?

 

Hi Mladen,

Could you possibly create a MTF version of TTM Scalper Subswings and Alerts? Your file is attached, thank you in advance.

ttm_scalper_with_subswings_amp_alerts.mq4

 
rayphua:
Hi Mladen,

Could you possibly create a MTF version of TTM Scalper Subswings and Alerts? Your file is attached, thank you in advance.

ttm_scalper_with_subswings_amp_alerts.mq4

rayphua

Here you go

 

TTM scalper with subswings and alerts - mtf

Due to the recent changes of metatrader 4 some stuff does not work with the new metatrader 4. It will be updated as the time goes by, so for a start, here is a version of ttm scalper with sub-swings, alerts and multi time frame that works with both build 509 and these new builds of metatrader 4

 

Dear mladen/mrtools,

The attached indicator only draws signals after candle close (when n+1 closes it draws signal on candle n), could you please make it draw signal right at candle open? (when n closes it draws signal at candle n)

 
camisa:
Dear mladen/mrtools, The attached indicator only draws signals after candle close (when n+1 closes it draws signal on candle n), could you please make it draw signal right at candle open? (when n closes it draws signal at candle n)

camisa

It can not be done

It calculates the swings exclusively on closed bars

 

I guess this one can not be converted to tradestation either?

 
sebastianK:
I guess this one can not be converted to tradestation either?

Actually I believe that there is one. Will check and will get back with the answer

 
mladen:
Actually I believe that there is one. Will check and will get back with the answer

Thanks. It would be interesting to see it in tradestation version

 
sebastianK:
Thanks. It would be interesting to see it in tradestation version

sebastianK

Try this : ttm_scalper.eld

Here is the documentation with explanation of TTM scalper too : ttm_scalper.pdf

Files:
ttm_scalper.pdf  868 kb
Reason: