PureBytes Links
Trading Reference Links
|
I want my indicators and show mes to only trigger on the chartscanner if the
volume is above 150,000 that day. The following is the attempt I made:
Inputs:
UsePrice(true),
MinPrice(10),
UseVol(true),
MaxVol(10000000),
MinVol(150000),
VolLen(30),
NumDays(43);
When I change the UseVol to false, the system triggers but does not filter.
When I change the UseVol to true the system fails to trigger. Should I remove
the MaxVol line if I am not interested in MaxVol only MinVol? What else looks
wrong?
Pert
|