OmniTrader Professional Forum
-
OmniScan
Q: sysind |
^ Top | ||
Greg![]() Posts: 337 Joined: 3/22/2006 Location: Mishawaka, IN 46544 ![]() | I am trying to create a sysind with HeikenAshi Reversal system 1.0.5.14 to scan for stock that meet this criteria. Sysind("HeikenAshi" 1, 0.5, 14) is how I have written and it has no results. The title is how it presents in the Technical scan library list but the actual name of the system is Heiken Ashi Reversal in the system menu. Any thoughts on how to implement this? | |
^ Top | ||
Greg![]() Posts: 337 Joined: 3/22/2006 Location: Mishawaka, IN 46544 ![]() | Ed mentioned in his video (2021 OT product release) where he revealed the sysind function that he was considering publishing a paper on this function. Does anyone know if that happened. | |
^ Top | ||
mholstius![]() Posts: 76 Joined: 6/15/2011 ![]() | Hi Greg, I'm not positive, but you might try adding a comma after the end quote: Sysind("HeikenAshi", 1, 0.5, 14) vs your: Sysind("HeikenAshi" 1, 0.5, 14) Good luck, Mark | |
^ Top | ||
Barry Cohen![]() Posts: 2305 Joined: 1/1/1900 ![]() | Mark is right, this is the syntax: SysInd("RSI-P", 13, 30, 70) | |
^ Top | ||
Greg![]() Posts: 337 Joined: 3/22/2006 Location: Mishawaka, IN 46544 ![]() | Thank you for the replies. The formula compiles but there are no results from a list of 4000 stocks. Seems unlikely for a HeikenAshi Reversal system. ![]() | |
^ Top | ||
Barry Cohen![]() Posts: 2305 Joined: 1/1/1900 ![]() | I see, you still need a condition for it that passes or not. Here are examples... This passes long signals only: SysInd("RSI-P", 13, 30, 70) = 1 This passes short signals only: SysInd("RSI-P", 13, 30, 70) = -1 This passes both long & short signals: SysInd("RSI-P", 13, 30, 70) <> 0 | |
^ Top | ||
Greg![]() Posts: 337 Joined: 3/22/2006 Location: Mishawaka, IN 46544 ![]() | Thanks Barry for your help… |