PureBytes Links
Trading Reference Links
|
apfxtrader,
Ah...... I never even considered that idea!!! Yes, this would work
fine!! Many Thanks for taking the time to answer.
I'm finding it quite difficult to get to grips with all of AB, so
really appreciate the help.
Having little programming experience doesn't help either!! :-/
--- In amibroker@xxxxxxxxxxxxxxx, "apfxtrader" <apforex@xxx> wrote:
>
> You can set different pixel distance from your graph for each
condition:
>
> PlotShapes(Cond1*shapeDigit1, colorGreen,0,L,-10);
> PlotShapes(Cond2*shapeDigit2, colorGreen,0,L,-25);
> PlotShapes(Cond3*shapeDigit3, colorGreen,0,L,-40);
> PlotShapes(Cond4*shapeDigit4, colorGreen,0,L,-55);
>
>
>
>
> --- In amibroker@xxxxxxxxxxxxxxx, "chorlton_c_hardy"
> <chorlton-c-hardy@> wrote:
> >
> >
> > Hello apfxtrader,
> >
> > Many Thanks for the code, but is there any way to plot each
condition
> > in a different chart?
> >
> > I am currently using a similar idea but was finding it difficult
to
> > clearly see which combination of conditions fell on a specific
> > period, especially if more than one occurred on a specific bar.
> >
> > I know this can be done by creating seperate indicators for each
> > condition and plotting them individually but I was hoping for
> > something a bit more efficient, if its possible.
> >
> > Thanks again for your help though....
> >
> >
> >
> >
> >
> > --- In amibroker@xxxxxxxxxxxxxxx, "apfxtrader" <apforex@> wrote:
> > >
> > > PlotShapes(Buy*shapeSmallUpTriangle, colorGreen,0,L);
> > > PlotShapes(condition1*shapeDigit1, colorGreen,0,L);
> > > PlotShapes(Condition2*shapeDigit2, colorGreen,0,L);
> > > PlotShapes(Condition3*shapeDigit3, colorGreen,0,L);
> > > PlotShapes(Condition4*shapeDigit4, colorGreen,0,L);
> > >
> > >
> > > --- In amibroker@xxxxxxxxxxxxxxx, "chorlton_c_hardy"
> > > <chorlton-c-hardy@> wrote:
> > > >
> > > > Hello All,
> > > >
> > > > I have a system which relies on 4 different conditions to
> > generate a
> > > > buy signal.
> > > >
> > > > In an attempt to refine my system, I am interested in finding
out
> > how
> > > > often EACH of these conditions generates a buy signal
> > individually.
> > > >
> > > > As a result, one idea I have is to plot individual charts for
> > each
> > > > seperate condition which will show the individual buy signals
for
> > > > that particular condition.
> > > >
> > > > This way I can then "eye up" the buy signals for each
condition
> > and
> > > > see which of them appear for each particular time period.
> > > >
> > > > Consequently, is there anyway to do this within my main code
or
> > do I
> > > > have to manually write & save each condition & then plot it
> > > > seperately?
> > > >
> > > > Also, I'd welcome any other ideas on how I could assess each
> > > > condition seperately...
> > > >
> > > > Many Thanks in advance,
> > > >
> > > > Chorlton
> > > >
> > >
> >
>
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/
|