pmatus1 |
Gold User, Member, Platinum User, TeleChart
|
Registered User |
|
|
|
|
Unsure |
|
Tuesday, September 11, 2007 |
Saturday, September 24, 2011 10:33:11 AM |
28 [0.01% of all post / 0.00 posts per day] |
|
12, 26, 9
|
5
|
ok, can you translate these into a pcf.
Positive RSI Divergence:
'# Period = userinput.integer = 50
If price.Close = price.MinClose(period) And price.Close < price.MinClose(period, period) * 1.01 AndAlso _
rsi.value = rsi.minlow(period) and rsi.value<30 and rsi.minlow(period) > rsi.MinLow(period, period) Then pass
Positive MACD Histogram Divergence:
'# Period = userinput.integer = 50
If price.Close = price.MinClose(period) And price.Close < price.MinClose(period, period) AndAlso _
mh.value = mh.minlow(period) And mh.minlow(period) > mh.MinLow(period, period) + .5 Then pass
Positive MACD Divergence:
'# Period = userinput.integer = 50
If price.Close = price.MinClose(period) And price.Close < price.MinClose(period, period) * 1.01 AndAlso _
macd.value = macd.minlow(period) and macd.minlow(period) > macd.MinLow(period, period) + .5 Then pass
Negative MACD Divergence:
'# Period = userinput.integer = 50
If price.Close = price.maxClose(period) And price.Close > price.maxClose(period, period) * .99 AndAlso _
macd.value = macd.maxhigh(period) And macd.maxhigh(period) < macd.maxhigh(period, period) Then pass
|
Hi, can you help with a pcf that looks for a 10 day low in price but yet the 5 period non wilder rsi is higher than that 10 day low.
and
can you help with a pcf that looks for a 10 day high in the price but yet the 5 period non wilder rsi is lower than that 10 day high.
|
Hi, if i am using the fast stochastics with settings 14, 3, how do i write a pcf that shows when %k line is below 10 or above 90?
thanks
|
ok bruce, i found the one that shows price above..
C > ((MAXH9.26 + MINL9.26 + MAXH26.26 + MINL26.26) / 4 + (MAXH52.26 + MINL52.26) / 2 + ABS((MAXH9.26 + MINL9.26 + MAXH26.26 + MINL26.26) / 4 - (MAXH52.26 + MINL52.26) / 2)) / 2
but i cant find the one for price being below, I would assume you just reverse the > to < but that does not work, any other suggestions?
thanks
|
Hi, is it possible to write a pcf that shows where price is above your standard ichimoku cloud and also when price is below it. namely when price is above the leading span a and leading span b and when price is below the leading span a and leading span b
|
hi, can you help me with a pcf (my settings for the stochastic are period = 14, %k =3 and %d = 1) how do i write a pcf that shows when its above 70 and also below 30? thanks
|
thx but it doesnt show what i was looking for, i need the macd (short 12, long26) line is over the exp moving average line of 9? and the same for when the line is below?
|
hi, how do i write a pcf that shows where the macd (short 12, long26) line is over the exp moving average line of 9? and the same for when the line is below?
|
|