PureBytes Links
Trading Reference Links
|
Sorry... Forgot to include the following code in the last reply.
Ron
/*
Buy / Sell Indicator based on a % Inrease / Decrease
*/
Title = " " + Name() + " - " + EncodeColor(colorRed) +Setpoint + "%"
+ EncodeColor(colorGreen) + " Buy " + EncodeColor(colorBlack)
+ " / " + EncodeColor(colorRed) + " Sell - " + ScanPeriod + "
Period Scan ";
GraphXSpace= 1000;
Setpoint = 8;
Color = IIf(C >=Ref(C,-1),colorGreen,colorRed);
YLevel = 50;
ScanPeriod = 40;
N = 1;
while(N <= ScanPeriod)
{
Change = ((C - LLV(C,N)) / C) * 100;
Buy = Cross(Change,Setpoint);
Change = ((C - HHV(C,N)) / HHV(C,N)) * 100;
Sell = Cross(-Setpoint,Change);
N = IIf(Buy OR Sell, ScanPeriod + 1, N + 1);
Graph1 = YLevel;
PlotShapes(shapeSmallCircle,Color,0,YLevel, Offset = 0);
PlotShapes(IIf(Buy,shapeUpArrow,shapeNone),colorGreen,0,YLevel-1);
PlotShapes(IIf(Sell,shapeDownArrow,shapeNone),colorRed,0,YLevel+1);
}
--- In amibroker@xxxxxxxxxxxxxxx, "dingo" <dingo@xxxx> wrote:
> Well Ron, I've been TRYING to help you but you're making it awfully
> difficult. My ESP isn't working as well as it used and I'm just
not picking
> the signals of what your formula looks like.
>
> Perhaps if you actually copied the formula into your next reply and
and let
> me actually SEE it I'll be able to get your going.
>
> BTW - my suggestions do work. From the error message you're
getting you
> don't even have the loops working to even get out of.
>
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:
http://docs.yahoo.com/info/terms/
|