PureBytes Links
Trading Reference Links
|
Dennis,
I'm not sure I understand but I'd try to name one of the two
differently, something like VixOut = Foreign("VIX", "Close"), and then
plot them separately, Plot(VixOut, ...) and Plot(Foreign("VIX",
"Close"), ...).
Not sure ...
Franco
theoldchartreader wrote:
> Thanks Franco,
> This is what I was trying to do.
> I have two price plots for the vix one inside the bollinger bands and
> one out side the bands. When I remove the line Plot(Foreign
> ("VIX", "Close"), "Vix", color, style); I lose both price plots, any
> ideas?
>
>
>
> --- In amibroker@xxxxxxxxxxxxxxx, "fgornati <fgornati@xxxx>"
> <fgornati@xxxx> wrote:
>
>>Dennis,
>>
>>try this:
>>
>>Plot(Foreign("VIX", "Close"), "Vix", color, style);
>>Plot(BBandTop(Foreign("VIX", "Close"), 20, 2), "Bollinger top",
>>color, style);
>>Plot(BBandBot(Foreign("VIX", "Close"), 20, 2), "Bollinger bottom",
>>color, style);
>>
>>Franco
>>
>>--- In amibroker@xxxxxxxxxxxxxxx, "theoldchartreader
>><theoldchartreader@xxxx>" <theoldchartreader@xxxx> wrote:
>>
>>>Hi,
>>>I would like to plot the bollinger band around the vix as a
>>
>>indicator.
>>
>>>what is the best way of doing this?
>>>
>>>Thank you
>>>Dennis
>
>
>
> Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
> (Web page: http://groups.yahoo.com/group/amiquote/messages/)
>
> Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>
>
>
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|