PureBytes Links
Trading Reference Links
|
Hello ram,
I agree with Rick, the UKB is a good place for a start...
http://www.amibroker.org/userkb/
Besides this point, your question is endless and not easy.
First You have to ask yourself which rules do you want to trade ?
In the case of Donchian lines, this is not a simple cross. It's much
more tricky. What to do at such support level , at such resistance and
so on.
At this point you don't know what you want exactly and your ideas will
evolve from the first day during the developpment.
IMO, such indicator is good for discretionary trading. Today I am quite
unable to auto-trade this formula. Maybe in few years !
Best regards
Rick Osborn a écrit :
>
>
> You will never learn to code in AFL unless you try doing something
> yourself, and you are going to wear out your welcome by continually
> asking others to do it for you.
>
> Try coding it yourself and if you are not happy with your own results,
> post the code. Others will undoubtedly point out your errors.
>
> Besides, there are no buy or sell Signals to code arrows for
>
> Best Regards
> Rick Osborn
>
>
> ------------------------------------------------------------------------
> *From:* ram vel <rvlv@xxxxxxxxx>
> *To:* amibroker@xxxxxxxxxxxxxxx
> *Sent:* Fri, November 13, 2009 9:41:16 PM
> *Subject:* Re: [amibroker] Re: REQ Please help code fibonacci bands in
> these lines as given-thanks
>
>
>
>
> Hi reinsley
>
> thanks. I have noted it already.
> can you put together and add buy sell arrows on this code ,please
> cheers
> rvlv
>
> --- On *Fri, 11/13/09, reinsley /<reinsley@xxxxxx fr>/* wrote:
>
>
> From: reinsley <reinsley@xxxxxx fr>
> Subject: Re: [amibroker] Re: REQ Please help code fibonacci bands in
> these lines as given-thanks
> To: amibroker@xxxxxxxxx ps.com
> Date: Friday, November 13, 2009, 3:43 PM
>
>
>
> The Fibonnaci ratio is : Donchian786 = 0.786 * DonchianRange +
> DonchianLower;
>
> the one in Donchian formula is not correct...
> Donchian764 = 0.764 * DonchianRange + DonchianLower;
>
> BR
>
> ram vel a écrit :
> >
> >
> > Hi David
> > Many thanks..
> > for your fast response and solution.
> > warm regards
> > rvlv
> >
> > --- On *Thu, 11/12/09, dbwyatt_1999 /<dbw451@xxxxxxxxxx net
> <http://us.mc342.mail.yahoo.com/mc/compose?to=dbw451%40bellsouth.net>>/*
> wrote:
> >
> >
> > From: dbwyatt_1999 <dbw451@xxxxxxxxxx net
> <http://us.mc342.mail.yahoo.com/mc/compose?to=dbw451%40bellsouth.net>>
> > Subject: [amibroker] Re: REQ Please help code fibonacci bands in
> > these lines as given-thanks
> > To: amibroker@xxxxxxxxx ps.com
> <http://us.mc342.mail.yahoo.com/mc/compose?to=amibroker%40yahoogroups.com>
> > Date: Thursday, November 12, 2009, 2:12 PM
> >
> >
> >
> >
> > The fib lines look to me like Donchian Channels with fib lines
> > dividing the upper and lower channel:
> >
> > _SECTION_BEGIN( "DonchianFibs" );
> > pds=Param("DFibLook back",55, 1,200,1);
> > DonchianUpper =HHV(H,pds);
> > DonchianLower = LLV(L,pds);
> > DonchianRange = DonchianUpper- DonchianLower;
> > Donchian236 = 0.236 * DonchianRange + DonchianLower;
> > Donchian382 = 0.382 * DonchianRange + DonchianLower;
> > Donchian500 = 0.500 * DonchianRange + DonchianLower;
> > Donchian618 = 0.618 * DonchianRange + DonchianLower;
> > Donchian764 = 0.764 * DonchianRange + DonchianLower;
> >
> > Plot(DonchianUpper, "DU",ParamColor( "CUpper", colorBlue)
> ,styleLine) ;
> > Plot(Donchian236, "D236",ParamColo r( "C236", colorYellow)
> > ,styleLine) ;
> > Plot(Donchian382, "D382",ParamColo r( "C382", colorAqua),styleLin e);
> > Plot(Donchian500, "D500",ParamColo r( "C500", colorRed),styleLine );
> > Plot(Donchian618, "D618",ParamColo r( "C618", colorAqua),styleLin e);
> > Plot(Donchian764, "D764",ParamColo r( "C764", colorYellow)
> > ,styleLine) ;
> > Plot(DonchianLower, "DL",ParamColor( "CLower", colorBlue)
> ,styleLine) ;
> > _SECTION_END
> >
> > Regards,
> >
> > David
> >
> > --- In amibroker@xxxxxxxxx ps.com
> > <http://us.mc342. mail.yahoo. com/mc/compose? to=amibroker%
> 40yahoogroups. com
> <http://us.mc342.mail..yahoo.com/mc/compose?to=amibroker%40yahoogroups.com>>,
> > "flyboypa30" <snoopy.pa30@ ...> wrote:
> > >
> > > RVLV,
> > >
> > > What have you got so far in your coding? What have you tried,
> > what works, where are you stuck?
> > >
> > > I am no expert, but willing to help.
> > >
> >
> >
> >
>
>
>
------------------------------------
**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com
TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
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:
amibroker-digest@xxxxxxxxxxxxxxx
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/
|