PureBytes Links
Trading Reference Links
|
Those commands worked, but gave the wrong answers.
I feel I will need to do it from a loop.
Loops do not accept Arrays so far.
There must be a work around.
I tried IIF's to see if it would furnish a number
that was not an array and have had no luck.
someone else must have fought the same problems.
--- In amibroker@xxxxxxxxxxxxxxx, "Herman van den Bergen"
<psytek@xxxx> wrote:
> Did you try using
>
> Intercept = Cross( Price, MA(C,3) ) ?
>
> or if you need the Intercept price:
>
> InterceptPrice = Valuewhen( Intercept, C);
>
> best regards,
> herman
> -----Original Message-----
> From: Carl K [mailto:KB0EBG@x...]
> Sent: Sunday, February 06, 2005 1:49 PM
> To: amibroker@xxxxxxxxxxxxxxx
> Subject: [amibroker] Intercept Help
>
>
>
> I have tried to calculate an intercept of price and a ma.
> I tried
>
> for(i=0; THi2<THi; i++) // THi2>Test Test++ This is
the logic
> {
> THi = High + (i/100);// Test High = High + .01 incrument
> THi2 = DEMA(THi, 3); // DEMA of Test High
> }
>
> had no luck saving it, so I modified it to
>
> // Calculate the intercept
> MB = 1;
>
> for(i=0; MB > 0; i++) // THi2>Test Test++ This
is the
> logic
> { THi = High + (i/100); // Test High = High + .01
> incrument
> THi2 = DEMA(THi, 3); // DEMA of Test High
> MB = IIf(THi2>THi, 1, 0); // Test to Make/Break loop
> }
> // no luck either
>
> I must be missing something.
>
> Carl
>
>
>
>
>
> Check AmiBroker web page at:
> http://www.amibroker.com/
>
> Check group FAQ at:
> http://groups.yahoo.com/group/amibroker/files/groupfaq.html
>
>
>
> -------------------------------------------------------------------
---------
> --
> Yahoo! Groups Links
>
> a.. To visit your group on the web, go to:
> http://groups.yahoo.com/group/amibroker/
>
> b.. To unsubscribe from this group, send an email to:
> amibroker-unsubscribe@xxxxxxxxxxxxxxx
>
> c.. Your use of Yahoo! Groups is subject to the Yahoo! Terms
of Service.
------------------------ Yahoo! Groups Sponsor --------------------~-->
What would our lives be like without music, dance, and theater?
Donate or volunteer in the arts today at Network for Good!
http://us.click.yahoo.com/Tcy2bD/SOnJAA/cosFAA/GHeqlB/TM
--------------------------------------------------------------------~->
Check AmiBroker web page at:
http://www.amibroker.com/
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:
http://docs.yahoo.com/info/terms/
|