Welcome Guest, please sign in to participate in a discussion. | Search | Active Topics | |
Registered User Joined: 2/9/2007 Posts: 21
|
Hi
C < C9 AND C < C8 AND C < C7 AND C < C6 AND C < C5 AND C < C4 AND C < C3 AND C < C2 AND C < C1 using this code in telechart could you please convirt it to stockfinder language.
Thanx
|
|
Registered User Joined: 12/31/2005 Posts: 2,499
|
' C < C9 AND C < C8 AND C < C7 AND
' C < C6 AND C < C5 AND C < C4 AND
' C < C3 AND C < C2 AND C < C1
if price.close < price.close(9) andalso _
price.close < price.close(8) andalso _
price.close < price.close(7) andalso _
price.close < price.close( 6) andalso _
price.close < price.close(5) andalso _
price.close < price.close(4) andalso _
price.close < price.close(3) andalso _
price.close < price.close(2) andalso _
price.close < price.close(1) then
pass
end if
|
|
Registered User Joined: 12/31/2005 Posts: 2,499
|
note price.close is really price.close( 6 )
|
|
Guest-1 |