PureBytes Links
Trading Reference Links
|
Yuki
The double arrows that you are seeing are the different arrows based on
whether you are going long or short, selling or covering. Green solid is
long, green open is cover, red solid is selling, red open is
shorting. Hope this is right. If not I am sure someone will tell me.
Steve
At 09:58 AM 9/10/2001 +0900, you wrote:
Hi DIMITRIS,
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
|