PureBytes Links
Trading Reference Links
|
Sunday, September 09, 2001, 7:05:59 PM, you wrote:
DT> Double click or right click on Result list However, I
>> > cannot find how to put the buy and sell arrows on the chart that
>> your
>> > gif shows.
Thank you. Now, I haven't progressed much farther with this formula
yet (no changes since you last looked), because I am so busy. But I
do have a question:
When I add these arrows, I get some double arrows. (See the gif.)
What causes this? My formula being run is:
Slw = 3;
Pds = 10;
A = Ema((Close -LLV(Low,Pds))/(HHV(H,Pds)-LLV(L,Pds)),Slw)*100;
B=Ema((A-LLV(A,pds))/(HHV(A,Pds)-LLV(A,Pds)),Slw)*100;
Graph0 = B;
BUY=(B > REF(B, -1) AND REF(B, -1) < REF(B, -2)) AND B < 30;
SELL=(B < REF(B, -1) AND REF(B, -1) > REF(B, -2)) AND B > 70;
SHORT=SELL;
COVER=BUY;
BUY=EXREM(BUY,SELL);
SELL=EXREM(SELL,BUY);
Best,
Yuki
mailto:yukitaga@x...
Attachment:
Arrows.gif
Attachment:
Description: "Description: GIF image"
|