Registered User Joined: 7/28/2006 Posts: 36
|
This code works just fine to produce True Marker hash marks but will not run as a sort:
'# WS1003 = chart.WordenStochastics
If WS1003.MinLow(10) > 80 Or WS1003.MaxHigh(10) < 20 Then pass
Am I doing something wrong?
I get no error message, just nothing from the software but a kind of blink of the screen. And no sort progress bar.
Other conditions sort just fine on my system.
The stoc is a (100,3) Worden Stoc.
|
Registered User Joined: 12/31/2005 Posts: 2,499
|
Try adding
'# Cumulative
and see if that helps
'# WS1003 = chart.WordenStochastics
'# Cumulative
If WS1003.MinLow(10) > 80 Or WS1003.MaxHigh(10) < 20 Then pass
|