SH's MArket Correction Prediction Strategy

Hi Guys - I am guessing this is an Amibroker AFL ....

Can someone post a screenshot?

The problem is that I do not use amibroker (I am bad at computers to be honest and I need help from someone who can teach me how to install and use amibroker with AFLs...) :down:

If anyone has the time and patience to help me install amibroker (free version) and teach me how to use it ... I will be really greatful....

Cheers
SH
hello i can install amibroker on ur computer with datasource and afl . add my yahoo
 
Last edited:
dear vjay,
life made easier. an afl with exploration option. now u can explore it and find the number of days left to test the emas.
_SECTION_BEGIN("total days");

SetBarsRequired(1000000,0);

function TotalDays()
{
yy = Year();
dy = DayOfYear();

leapyear = ( yy % 4 ) == 0 AND yy != 2000;

yearlen = IIf( leapyear, 366, 365 );

return yearlen * (yy - yy[ 0 ]) + (dy - dy[0]);
}

td = TotalDays();
dy = DayOfYear();

//Plot( td, "TotalDays", colorRed );
ts15dy=ValueWhen((L<=EMA(C,15) AND H>=EMA(C,15)),td);
ts34dy=ValueWhen((L<=EMA(C,34) AND H>=EMA(C,34)),td);
ts100dy=ValueWhen((L<=EMA(C,100) AND H>=EMA(C,100)),td);

Plot( 42-(td-ts15dy), "Out of 42 days remaning to test e-15 ", colorBlue );
Plot( 126-(td-ts34dy), "Out of 126 days remaining to test e-34 ", colorGreen );
Plot( 196-(td-ts100dy), "Out of 196 days remaining to test e-100 ", colorRed );
_SECTION_END();
Filter=1;
NumColumns = 0;
AddColumn(O,"open", 1.2);
AddColumn(H,"high", 1.2);
AddColumn(L,"low", 1.2);
AddColumn(Close,"CMP", 1.2);
AddColumn(42-(td-ts15dy),"days to test e15", 1);
AddColumn(126-(td-ts34dy),"days to test e34", 1);
AddColumn(196-(td-ts100dy),"days to test e100", 1);

hope u will really enjoy it- no need of calaculators:)
vyasa
 
Hi Guys - I am guessing this is an Amibroker AFL ....

Can someone post a screenshot?

The problem is that I do not use amibroker (I am bad at computers to be honest and I need help from someone who can teach me how to install and use amibroker with AFLs...) :down:

If anyone has the time and patience to help me install amibroker (free version) and teach me how to use it ... I will be really greatful....

Cheers
SH
Here you go...



I will pm you about amibroker installation.
 

gb333

Active Member
Hi Guys - I am guessing this is an Amibroker AFL ....

Can someone post a screenshot?

The problem is that I do not use amibroker (I am bad at computers to be honest and I need help from someone who can teach me how to install and use amibroker with AFLs...) :down:

If anyone has the time and patience to help me install amibroker (free version) and teach me how to use it ... I will be really greatful....

Cheers
SH
CAN I APPLY 534EMA/100 EMA Revision strategy in SBIN and RELIANCE Options? Or it will safe to trade in MINIFTY with this strategy first?

Regards
Gautam
 
dear vjay,
life made easier. an afl with exploration option. now u can explore it and find the number of days left to test the emas.
_SECTION_BEGIN("total days");

SetBarsRequired(1000000,0);

function TotalDays()
{
yy = Year();
dy = DayOfYear();

leapyear = ( yy % 4 ) == 0 AND yy != 2000;

yearlen = IIf( leapyear, 366, 365 );

return yearlen * (yy - yy[ 0 ]) + (dy - dy[0]);
}

td = TotalDays();
dy = DayOfYear();

//Plot( td, "TotalDays", colorRed );
ts15dy=ValueWhen((L<=EMA(C,15) AND H>=EMA(C,15)),td);
ts34dy=ValueWhen((L<=EMA(C,34) AND H>=EMA(C,34)),td);
ts100dy=ValueWhen((L<=EMA(C,100) AND H>=EMA(C,100)),td);

Plot( 42-(td-ts15dy), "Out of 42 days remaning to test e-15 ", colorBlue );
Plot( 126-(td-ts34dy), "Out of 126 days remaining to test e-34 ", colorGreen );
Plot( 196-(td-ts100dy), "Out of 196 days remaining to test e-100 ", colorRed );
_SECTION_END();
Filter=1;
NumColumns = 0;
AddColumn(O,"open", 1.2);
AddColumn(H,"high", 1.2);
AddColumn(L,"low", 1.2);
AddColumn(Close,"CMP", 1.2);
AddColumn(42-(td-ts15dy),"days to test e15", 1);
AddColumn(126-(td-ts34dy),"days to test e34", 1);
AddColumn(196-(td-ts100dy),"days to test e100", 1);

hope u will really enjoy it- no need of calaculators:)
vyasa
can anybody help me to add the exact date instead of "days to test" in the exploration
thanx in advance
vyasa
 
Kollurucvv,

The predictions are pretty good. Thank you for posting them. If you do not want to disrupt the someone elses' thread, you can start one of your own, though I feel SH would not mind this much, but then again, it is entirely up to his discretion.

Regards,
 

Similar threads