PureBytes Links
Trading Reference Links
|
This obv overlay is even better....thanks for the candle code William
UpCandleColor = colorGreen;
DownCandleColor = colorRed;
FlipColor = Flip( Nz( C > Ref( C, -1 ), 1 ), C < Ref( C, -1 ));
CandleColor = IIf( FlipColor == 1, UpCandleColor , DownCandleColor );
Plot( Close, "Close", CandleColor, styleCandle );
PlotStyle = styleNoLine + styleLeftAxisScale + styleOwnScale + styleNoLabel + styleNoDraw;
Plot( Open, "Open", 0, PlotStyle );
Plot( High, "High", 0, PlotStyle );
Plot( Low, "Low", 0, PlotStyle );
Plot( Volume, "Volume", 0, PlotStyle );
Title = Name() + " - " + WriteVal( DateTime(), formatDateTime ) + " - " + " Open: " + O + ", Hi: " + H + ", Low: " + L + ", Close: " + C + ", Volume: " + WriteVal(V,1);
GraphXSpace = 4;
y=OBV();
Plot(y,"OBV",colorBlue,4|styleOwnScale);gianler <gianler@xxxxxxxxxxxx> wrote:
Thank you Jason..the link was http://www.pro-fundity.com/images/ansr-d-2.gif--- In amibroker@xxxxxxxxxxxxxxx, Jason Hart <jhart_1972@xxxx> wrote:> > Try this, I'm assuming this is what you mean. Your example didn't show up on the link> > x=Close;> > y=OBV();> > Plot(x,"Close",5,5,1|styleOwnScale);> > Plot(y,"OBV",colorBlue,4|styleOwnScale);> > Jason> > > gianler <gianler@xxxx> wrote:Excume my english, guys> > I would like to know how can plot OBV indicator on prices..> > like this for example> (http://www.pro-fundity.com/images/ansr-d-2.gif)> > thanx> >
> > > Send BUG REPORTS to bugs@xxxx> Send SUGGESTIONS to suggest@xxxx> -----------------------------------------> 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 > > > > ---------------------------------> Yahoo! Groups Links> > To visit your group on the web, go to:> http://groups.yahoo.com/group/amibroker/> > To unsubscribe from this group, send an email to:>
amibroker-unsubscribe@xxxxxxxxxxxxxxx> > Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. > > > > > ---------------------------------> Do you Yahoo!?> Yahoo! Hotjobs: Enter the "Signing Bonus" SweepstakesSend BUG REPORTS to bugs@xxxxxxxxxxxxxSend SUGGESTIONS to suggest@xxxxxxxxxxxxx-----------------------------------------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
Yahoo! Groups Links
To visit your group on the web, go to:http://groups.yahoo.com/group/amibroker/
To unsubscribe from this group, send an email to:amibroker-unsubscribe@xxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
Do you Yahoo!?
Yahoo! Hotjobs: Enter the "Signing Bonus" Sweepstakes
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
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
Yahoo! Groups Links
To visit your group on the web, go to:http://groups.yahoo.com/group/amibroker/
To unsubscribe from this group, send an email to:amibroker-unsubscribe@xxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
|