Thank you again for your help.
|
Bruce,
Could you please help with these 2 PCFs for Ichimoku Cloud where:
- The current price is within or above the Ichimoku Cloud when span A is above span B.
- The current price is within or below the Ichimoku Cloud when span A is below span B. (Opposite of above)
This request is for TC2000 V 12.4, and if possible for TC2000 V7.
Thank you.
|
Bruce ,
I have a tend formula in my Metastock that I need PCF help with:
Factor:=Input("Factor",1.00,10.00,3.00);
Pd:=Input("ATR Periods",1,100,10);
Up:=MP()+(Factor*ATR(Pd));
Dn:=MP()-(Factor*ATR(Pd));
Td:=If(Cross(C,LLV(Up,13)),1,If(Cross(HHV(Dn,13),C ),-1,PREV));
Dnx:=If(Dn=HighestSince(1,Cross(Td,0),Dn),Dn,PREV) ;
Upx:=If(Up=LowestSince(1,Cross(0,Td),Up),Up,PREV);
ST:=If(Td=1,Dnx,If(Td=-1,Upx,PREV));
ST
Also, PCF for Stochastic of CCI if possible :
(Sum(CCI(14)-LLV(CCI(14),5),3) / Sum(HHV(CCI(14),5)-LLV(CCI(14),5),3))*100
Thank you,
mfg
|
Thank you Bruce, it worked well
|
Hi Bruce,
Couuld you please help in writing a formula for 8 day MOVING AVERAGE of Stochastic (55,2,1) today, yesterday, and two daysa ago.
Thank you.
|
Appears to be not much diffrent when decimals are not used, thank for your help in clarification.
|
Bruce,
Could you help with with PCF of DEMA MACD (Dinapoli), also crossover up and down scans PCFs; The Metastock formula is:
A:=(Mov(C,8.3896,E)-Mov(C,17.5185,E));
Sig:=Mov(A,9.0503,E);
0;Sig;A;
Thank you.
|
Could you help in writing two Easy Scans for when over bought/over sold condition occrs in Telechart using the following:
Green spike oversold :
L<((3.05*MINL15.7)-MAXH7.3)/2 AND STOC12.5<10 AND L<L1
Red spike overbought :
H>((2.95*MAXH15.7)-MINL7.3)/2 AND H>H1 AND STOC12.5>90 AND TSV3<TSV8
Thank you.
|