PureBytes Links
Trading Reference Links
|
Hi
I have some scans that I run end of day. The scan involves closing
price incrementing by 1 from the previous close and hitting a 5 day
high.
Buy = (C > 10) AND
(MA(V,50) > 200000) AND
(C > Ref(HHV(C,5),-1)) AND
(C > (Ref(C,-1) + 1)) AND
(V > (2.0 * MA(V,50)));
Sell = Close == LLV(Close, 4);
Can I run this scan on an intra day basis with real time quotes, let
us say every minute without changing the formula. C would refer to
current price instead of closing price.
Thanks
Anindo
|