PureBytes Links
Trading Reference Links
|
Hello,
I don't know if it is what you want but the code below gives you
weekly candles ( time frame 5 exactly)
O=TfO(5);
C=TfC(5);
L=TfL(5);
H=TfH(5);
Plot( Close, "", 1, 64 );
stephane
>
> This is what I use but it's not as convienent as what you describe:
>
> On a fresh Tab add the following indicator:
>
> Plot( O,"Open",2 , 256);
> Plot( H,"High",3 , 256);
> Plot( L,"Low",4 , 256);
> Plot( C,"Close",5 , 64);//candle graph
>
> Plot( MA( C, 10 ),"MA 10 Period Yellow",7 , 1);
> Plot( MA( C, 30 ),"MA 30 Period Blue",6 , 1);
> Plot( MA( C, 40 ),"MA 40 Period Green",5 , 1);
>
> GraphXSpace = 1;
>
>
>
> When ever you want to view the chart in weekly mode just click the
weekly
> view button and switch to your new TAB. The drawback is that you
cannot see
> the values change as you click on the different bars but you can
see the bar
> values in the associated tooltip text.
>
> Regards,
> William
>
> -----Original Message-----
> From: miked33 [mailto:miked@x...]
> Sent: Sunday 7 July 2002 1:11 PM
> To: amibroker@xxxx
> Subject: [amibroker] Daily and Weekly views
>
>
> Is there a way that you can set the default preferences for the
daily
> view to for instance 13,50,200 day MA and the weekly to 20,30,40
week
> MA and then quickly toggle from daily to weekly view? Currently I
> reset the preferences each time I toggle between daily and weekly
> views.
>
> thanks
>
>
>
>
>
> Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
|