SI
SI
discoversearch

We've detected that you're using an ad content blocking browser plug-in or feature. Ads provide a critical source of revenue to the continued operation of Silicon Investor.  We ask that you disable ad blocking while on Silicon Investor in the best interests of our community.  If you are not using an ad blocker but are still receiving this message, make sure your browser's tracking protection is set to the 'standard' level.
Strategies & Market Trends : NetCurrents NTCS -- Ignore unavailable to you. Want to Upgrade?


To: MechanicalMethod who wrote (7241)6/17/2001 4:14:28 AM
From: Teresa Lo  Respond to of 8925
 
Well, I wish I knew something about (not so)EasyLanguage so that I can help, but I am hopeless in this department. If I didn't know Michael Friesen and Mike Watkins, I'd be completely hooped with my TradeStation stuff.

Perhaps there is some sort of programming guru around here who will materialize and help us...

T.



To: MechanicalMethod who wrote (7241)6/17/2001 8:23:38 AM
From: CynicalTruth  Read Replies (1) | Respond to of 8925
 
re: " for offset=currentbar-myBar[ctr] downto 0 begin "

What kind of problem are you having with this statement?
Might try:
(currentbar-myBar[ctr]) or

MyVariable=currentbar-myBar[ctr]
for offset=MyVariable downto 0 begin

Probably have to see the rest of the code to give a "uneducated" guess...

John Sugas



To: MechanicalMethod who wrote (7241)6/17/2001 10:20:58 AM
From: David Loomis  Read Replies (1) | Respond to of 8925
 
Did you initialize offest and mybar and ctr in a var or input statement?

var: offset(0), mybar(0), ct(0);