View previous topic :: View next topic |
Author |
scanner not working |
ssijbabu White Belt
Joined: 23 Dec 2011 Posts: 6
|
Post: #1 Posted: Mon Aug 20, 2012 10:34 am Post subject: scanner not working |
|
|
Why is the scanner not working. Evn the simple query (OPEN> CLOSE)is not returning any symbol.
My requirement is this. At EOD i need the list of stocks satisfying the below condition.
Close>SMA10 and Close >SMA20 and
High<High1 and High1 <High2 and
ForceIndex3 <= 0 and
ADX>30
ForceIndex can be calculated as follows
FI = (Current Close - Previous Close) * Volume
FI(3) = EMA(FI,3)
FI(13 = EMA(FI,13)
CAn anoyone test the scanner and let me know if its working for u? |
|
Back to top |
|
|
|
|
ProTrader Site Admin
Joined: 06 Jul 2008 Posts: 433
|
Post: #2 Posted: Mon Aug 20, 2012 5:58 pm Post subject: |
|
|
Dear ssijbaba:
When did you run this...thx..PT |
|
Back to top |
|
|
ssijbabu White Belt
Joined: 23 Dec 2011 Posts: 6
|
Post: #3 Posted: Mon Aug 20, 2012 6:52 pm Post subject: |
|
|
ProTrader wrote: | Dear ssijbaba:
When did you run this...thx..PT |
Yday and Day before Yday |
|
Back to top |
|
|
kamal.icharts Site Admin
Joined: 10 Apr 2013 Posts: 576
|
Post: #4 Posted: Tue Aug 21, 2012 10:49 am Post subject: Re: scanner not working |
|
|
Dear Member,
Force Index indicator is available, which can be plotted below the chart. Please let us know what is your exact requirement for the Force Index pertaining to the scanner, and we will look further in this regard.
Kamal
ssijbabu wrote: | ForceIndex can be calculated as follows
FI = (Current Close - Previous Close) * Volume
FI(3) = EMA(FI,3)
FI(13 = EMA(FI,13)
CAn anoyone test the scanner and let me know if its working for u? |
|
|
Back to top |
|
|
kamal.icharts Site Admin
Joined: 10 Apr 2013 Posts: 576
|
Post: #5 Posted: Tue Aug 21, 2012 11:17 am Post subject: Re: scanner not working |
|
|
Dear Member,
Firstly, please ensure that you enter the correct syntax for the conditions that you are using for the screener. Please try the following on Daily timeframe. Please refer the scripting file available at http://www.icharts.in/forum/scripting-language-for-platinum-charts-t4375.html
1) OPEN > REF(CLOSE,1)
The above function returns the script where today's open is greater than previous day close.
2) CLOSE > SMA(CLOSE,10)
The above function returns the script where current close is greater than SMA(10)
3) CLOSE > SMA(CLOSE,20)
The above function returns the script where current close is greater than SMA(20)
4) HIGH > REF(HIGH,1)
The above function returns the script where today's high is greater than previous day high.
5) ADX(14) > 20
The above function returns the script where ADX of 14 period is greater than 30.
Regards
Kamal
ssijbabu wrote: | Why is the scanner not working. Evn the simple query (OPEN> CLOSE)is not returning any symbol.
My requirement is this. At EOD i need the list of stocks satisfying the below condition.
Close>SMA10 and Close >SMA20 and
High<High1 and High1 <High2 and
ForceIndex3 <0>30
|
|
|
Back to top |
|
|
ssijbabu White Belt
Joined: 23 Dec 2011 Posts: 6
|
Post: #6 Posted: Tue Aug 21, 2012 2:27 pm Post subject: |
|
|
is there any limitation that the scanner will work only during market hours? |
|
Back to top |
|
|
balarajh White Belt
Joined: 27 Jul 2008 Posts: 26
|
Post: #7 Posted: Tue Aug 21, 2012 2:36 pm Post subject: |
|
|
EVEN I FEEL SAME WAY.
YESTERDAY I WAS TRYING SOME SCRIPS IN SCANNER. IT WAS NOT WORKING. BUT TODAY THEY R WORKING.
ADMIN,
CAN YOU GIVE SOME EXAMPLES FOR CUSTOM INDICATOR???
CAN U PROVIDE THE SCRIPT FOR SUPER TREND??
REGARDS,
BALARAJ.
SORRY FOR CAPS |
|
Back to top |
|
|
kamal.icharts Site Admin
Joined: 10 Apr 2013 Posts: 576
|
Post: #8 Posted: Tue Aug 21, 2012 4:57 pm Post subject: |
|
|
Dear Member,
Scanner do work after market hours. The screener will show the results only if there are scripts that satify the condition.
Regards
Kamal
ssijbabu wrote: | is there any limitation that the scanner will work only during market hours? |
|
|
Back to top |
|
|
kamal.icharts Site Admin
Joined: 10 Apr 2013 Posts: 576
|
Post: #9 Posted: Tue Aug 21, 2012 4:58 pm Post subject: |
|
|
Dear Member,
Can you let me know the condition that you tried yesterday for which results did not appear? We will check at our end.
Also supertrend indicator is available in Platinum.
Regards
Kamal
balarajh wrote: | EVEN I FEEL SAME WAY.
YESTERDAY I WAS TRYING SOME SCRIPS IN SCANNER. IT WAS NOT WORKING. BUT TODAY THEY R WORKING.
ADMIN,
CAN YOU GIVE SOME EXAMPLES FOR CUSTOM INDICATOR???
CAN U PROVIDE THE SCRIPT FOR SUPER TREND??
REGARDS,
BALARAJ.
SORRY FOR CAPS |
|
|
Back to top |
|
|
balarajh White Belt
Joined: 27 Jul 2008 Posts: 26
|
Post: #10 Posted: Tue Aug 21, 2012 5:27 pm Post subject: |
|
|
one of the script was,
LAST = EMA(CLOSE,34)*1.005
REGARDS
BALARAJ |
|
Back to top |
|
|
ProTrader Site Admin
Joined: 06 Jul 2008 Posts: 433
|
Post: #11 Posted: Tue Aug 21, 2012 7:05 pm Post subject: |
|
|
Folks:
When you say OPEN it is looking for today's open. When you say CLOSE it is looking for today's close. Yesterday there was no open or close so no it would not work. In the guide, please look at how to refer to data for past days.
Thx..PT |
|
Back to top |
|
|
balarajh White Belt
Joined: 27 Jul 2008 Posts: 26
|
Post: #12 Posted: Tue Aug 21, 2012 8:02 pm Post subject: |
|
|
DEAR ADMIN,
YESTERDAY I TRIED THIS SCRIPT ALSO ON DAILY TIME FRAME, BUT DID NOT GIVE ANY OUTPUT.
REF(CLOSE,1) > REF(EMA(CLOSE,34),1)
BUT TODAY IT IS GIVING OUTPUT. WE KNOW THAT YESTERDAY THERE WAS NO OPEN OR CLOSE. STILL I GET OUTPUT.
WHEN THE SAME SCRIPT WAS TRIED YESTERDAY, THER WAS NO OUTPUT.
WHAT AM I MISSING HERE??
Balaraj |
|
Back to top |
|
|
ssijbabu White Belt
Joined: 23 Dec 2011 Posts: 6
|
Post: #13 Posted: Tue Aug 21, 2012 11:29 pm Post subject: Re: scanner not working |
|
|
kamal.icharts wrote: | Dear Member,
Force Index indicator is available, which can be plotted below the chart. Please let us know what is your exact requirement for the Force Index pertaining to the scanner, and we will look further in this regard.
Kamal
ssijbabu wrote: | ForceIndex can be calculated as follows
FI = (Current Close - Previous Close) * Volume
FI(3) = EMA(FI,3)
FI(13 = EMA(FI,13)
CAn anoyone test the scanner and let me know if its working for u? |
|
Force index indicator is throwing error that volume is missing. i tried nifty. |
|
Back to top |
|
|
ssijbabu White Belt
Joined: 23 Dec 2011 Posts: 6
|
Post: #14 Posted: Tue Aug 21, 2012 11:40 pm Post subject: |
|
|
scanner is working now. but there is some mismatch between ur scanner and amibroker.
amibroker gives 3 stock today. but ur scanner is not listing any thiing.
i used the below condition.
Close>SMA10 and Close >SMA20 and
High<High1 and High1 <High2 and
ForceIndex3 < = 0 and ForceIndex13 > = 0 and
ADX20>30
Amibroker result-> ERAINFRA, RELAXO, VENKEYS for 21/8/2012
P.S. sometimes scanner results are disappearing after a minute and i need to refresh the page and rerun the scanner to get it back. look into this issue. |
|
Back to top |
|
|
kamal.icharts Site Admin
Joined: 10 Apr 2013 Posts: 576
|
Post: #15 Posted: Thu Aug 23, 2012 9:58 am Post subject: Re: scanner not working |
|
|
Dear Member,
You need to plot Volume first on the charts and then plot Force Index or any indicator which is dependent on Volume.
Regards
Kamal
ssijbabu wrote: |
Force index indicator is throwing error that volume is missing. i tried nifty. |
|
|
Back to top |
|
|
|