PureBytes Links
Trading Reference Links
|
Hi,
I am trying to come up with an intraday scan but I am getting awkward signals. Most of them at 4pm. This is my code:
in10Minute = 15 * in1Minute ;
TimeFrameSet ( in10Minute ) ;
Green1 = LinearReg ( Close, 3 ) ;
Red1 = EMA ( Close, 3 ) ;
TimeFrameRestore () ;
Green = TimeFrameExpand (Green1, in10Minute) ;
Red = TimeFrameExpand (Red1, in10Minute) ;
Buy = Cross ( Green, Red ) ;
Short = Cross ( Red, Green ) ;
Any help is appreciated
thanks
tony
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For other support material please check also:
http://www.amibroker.com/support.html
YAHOO! GROUPS LINKS
|