Download software Tutorial videos
Subscription & data-feed pricing Class schedule


New account application Trading resources
Margin rates Stock & option commissions

Attention: Discussion forums are read-only for extended maintenance until further notice.
Welcome Guest, please sign in to participate in a discussion. Search | Active Topics |

Profile: pmatus1
About
User Name: pmatus1
Groups: Gold User, Member, Platinum User, TeleChart
Rank: Registered User
Real Name:
Location
Occupation:
Interests:
Gender: Unsure
Statistics
Joined: Tuesday, September 11, 2007
Last Visit: Saturday, September 24, 2011 10:33:11 AM
Number of Posts: 28
[0.01% of all post / 0.00 posts per day]
Avatar
Last 10 Posts
Topic: rsi
Posted: Wednesday, September 21, 2011 3:17:22 PM
12, 26, 9
Topic: rsi
Posted: Wednesday, September 21, 2011 2:28:56 PM
5
Topic: rsi
Posted: Wednesday, September 21, 2011 1:05:24 PM
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
Topic: rsi
Posted: Wednesday, September 21, 2011 12:40:18 PM
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.
Topic: stochastics
Posted: Friday, September 2, 2011 11:40:58 AM
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
Topic: pcf
Posted: Monday, July 11, 2011 11:05:06 AM
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
Topic: pcf
Posted: Monday, July 11, 2011 10:47:10 AM
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
Topic: stochastics
Posted: Friday, July 8, 2011 6:04:22 PM
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
Topic: macd
Posted: Wednesday, July 6, 2011 8:45:37 AM
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?
Topic: macd
Posted: Tuesday, July 5, 2011 2:32:31 PM
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?