|
Greg
 Legend
    Posts: 337
Joined: 3/22/2006
Location: Mishawaka, IN 46544
User Profile |
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?
|
|
Greg
 Legend
    Posts: 337
Joined: 3/22/2006
Location: Mishawaka, IN 46544
User Profile |
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.
|
|
mholstius
 Regular
   Posts: 76
Joined: 6/15/2011
User Profile |
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
|
|
Barry Cohen
 Idol
    Posts: 2305
Joined: 1/1/1900
User Profile |
Mark is right, this is the syntax: SysInd("RSI-P", 13, 30, 70)
|
|
Greg
 Legend
    Posts: 337
Joined: 3/22/2006
Location: Mishawaka, IN 46544
User Profile |
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.
[Edited by Greg on 12/12/2022 10:19 AM]
Attached file : 2022-12-12_11-10-04.jpg (125KB - 143 downloads)
|
|
Barry Cohen
 Idol
    Posts: 2305
Joined: 1/1/1900
User Profile |
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
|
|
Greg
 Legend
    Posts: 337
Joined: 3/22/2006
Location: Mishawaka, IN 46544
User Profile |
Thanks Barry for your help…
|