PureBytes Links
Trading Reference Links
|
Thanks a lot Mr Padhu
it works
regards
perumal
--- In amibroker@xxxxxxxxxxxxxxx, S Padhu <ccie8340@xxx> wrote:
>
> hello,
>
> use timeframeexpand(CCI30Min,0.5*inhourly,expandfirst) instead of
cci30min in your rule.
>
> cheers,Padhu
>
>
>
>
> ----- Original Message ----
> From: Perumal Ramasamy <umrperumal@xxx>
> To: amibroker@xxxxxxxxxxxxxxx
> Sent: Sunday, September 2, 2007 10:19:07 AM
> Subject: [amibroker] Multiple time frames
>
> Hi all,
>
> I use 5 min chart and want to add buy arrows to my chart which
satisfy conditions involving two time frames, as under:
>
> 1) Price crosses moving average line, on the upside.in 5 min chart
> 2) CCI indicator is less than -50 in 30 min chart.
>
> I tried to make an indicator, but it is not giving the correct
result. While buy arrows are shown, they are not remaining constant
at the same place, They keep changing.
>
> I give below the code : (My base chart is 5 minutes)
>
> TimeFrameSet( 1800); //Timeframe set to 30
minutes
> CCI30Min = CCI (20); // Calculation of 20
periods CCI value in 30 min time frame
> TimeFrameRestore( );
>
> AveragePrice = MA(Close, 50);
> Buy = Cross(Close, AveragePrice) AND CCI30Min < -50 *
shapeUpArrow ;
>
> Plot(C, "Price", colorBrightGreen, styleCandle) ; // price
plot
> PlotShapes(Buy, colorYellow, 0, Low, -10); // buy
arrow plot
>
> Can somebody be kind enough to correct the mistake in the above
codes.
>
> Thanks for your time.
>
> Regards
>
> perumal
>
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 NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|