Hello
Sorry was out of station and at a place with no net or phone coverage . . .
Uploaded with ImageShack.us
Can somebody help me in writing a scan ?
As shown in the chart, the area marked with rectangle, almost all the EMA's which can be seen in title are very much near.
In this case, 20 EMA = 5961.28
15 min 20 EMA = 5959.14
30 min 20 EMA = 5961.11
Hourly 20 EMA = 5958.77
So I want to scan stocks in my watch list meeting the above condition and want to run this scan every 5 minutes.
Thanks for the help in advance.
Manoj
Happy
Sorry was out of station and at a place with no net or phone coverage . . .
Happy Singh
Can you please make an exploration to scan all types of Doji's and Pin Bar's preferably on any time frame ?
Amit
Can you please make an exploration to scan all types of Doji's and Pin Bar's preferably on any time frame ?
Amit
Code:
Filter = abs(O-C) / (H-L) < Param("O2C % of Range", 0.3,0.05,0.5,0.05);
Uploaded with ImageShack.us
Can somebody help me in writing a scan ?
As shown in the chart, the area marked with rectangle, almost all the EMA's which can be seen in title are very much near.
In this case, 20 EMA = 5961.28
15 min 20 EMA = 5959.14
30 min 20 EMA = 5961.11
Hourly 20 EMA = 5958.77
So I want to scan stocks in my watch list meeting the above condition and want to run this scan every 5 minutes.
Thanks for the help in advance.
Manoj
Code:
P = Param("Points Difference", 5,0.5,25,0.5);
Filter = abs(MA1-MA_15) < P AND abs(MA1-MA_30) < P AND abs(MA1-MA_Hr) < P AND
abs(MA_15-MA_30) < P AND abs(MA_15-MA_Hr) < P AND abs(MA_30-MA_Hr) < P;
Happy