Showing posts with label ProRealTime. Show all posts
Showing posts with label ProRealTime. Show all posts

Tuesday, November 3, 2009

Original 20 Day Momentum ProRealTime Code

Hi All,

this is the code for the original 20 Day Momentum in ProRealTime.

period = 20

C = close [period]

return C as "20th Day Close"

Saturday, September 19, 2009

My Penny Stock ProScreener Code

Hi All,

This code is not for Forex but for people who wants to screen across the stock market for stocks that is below $2 dollars, the volume is more than 1 million.

indicator1 = close
c1 = (indicator1 <= 2.0)

indicator2 = Volume
c2 = (indicator2 >= 1000000.0)

indicator3 = close
indicator4, ignored = CALL "52-Weeks Channel"
c3 = (indicator3 >= indicator4)

criteria = Volume

SCREENER[c1 AND c2 AND c3] (criteria AS "Volume")

Wednesday, August 26, 2009

Conquerer's Indicator

Hi all,

I did the programming of the 2 Indicators required for Conquerer in PRT.

10 Day Ago 10 Day Moving Average

period = 10

MA = Average[period](Dclose(period))

return MA as "10th Day Ago MA-10"


40th Day Ago Close

period = 40

C =close [period]

return C as "40th Day close"

Hope this helps :)

Max

Thursday, August 13, 2009

Setting Up ProRealTime with All Indicators

Hi All,

If you need help to setup your ProRealTime, please click on the link to download a video of me setting up ProRealTime.

https://www.yousendit.com/download/Y1RwanZqMGM1UjVFQlE9PQ

*Note: This is the 1ST time I am creating a video. It is not perfect. Do feedback :)

Your Friend,
Max

Cashflow Warrior Academy - "Everyone Never Work Again!"

Channel BreakOut Codes

55 Days High & Low Channel BreakOut Code

// Define a period
period = 55

H = highest [period]( high )
L=lowest [period]( low )

return H as "55-Day Channel Highest", L as "55-Day Channel Lowest"

20 Days High & Low Channel BreakOut Code

// Define a period
period = 20

H = highest [period]( high )
L=lowest [period]( low )

return H as "20-Day Channel Highest", L as "20-Day Channel Lowest"

Monday, July 27, 2009

Verified! 20 Day Momentum Code for ProRealTime

Hi All,

The code for 20 Day Momentum have been verified by Courtney himself! :) Cheers guys! We are on the right track :)

Max Tay

Sunday, July 19, 2009

Difference between FXCM's MarketScope Close and ProRealTime Close

Hi All,

I realised that the closes are different on these two different charts, hence I decided to listen to Courtney Smith's Newbie Webinar and realised that ProRealTime Closes is based on GMT 00:00 which is 8am Singapore Time. But MarketScope's Close is based on 2 hours before that.

Therefore the difference of time. Great! Solve the mystery finally :)

Your Friend,
Max Tay

Saturday, July 18, 2009

20 Day Momentum ProRealTime Code

Hi All,

I think I figure out the codes for 20 Day Momentum. Add the indicator as the same as how we added the 55-20 Day Channel Breakout Indicator.

// Define a period
period = 20

H = highest [period]( close )
L=lowest [period]( close )

return H as "20-Day Highest Close", L as "20-Day Lowest Close"

Wednesday, July 15, 2009

How to CoFlex?

Hi All,

Alot of People asked about CoFlex. Well, after watching the video, I believe Courtney added two indicator - Moving Average 10 and TEMA 21. This two indicator will cause 2 lines to cross which is the entry point :) Rather amazing and simple technique :)

In my own charts, I purposely make it into one green and one red line :P I think USD/CHF is about to cross :) Cheers to Courtney!

Your Friend,
Max Tay
Financial Freedom Coach

Cashflow Warrior Academy - "Everyone never work again"
m: +65 92718133
e: Max@MySmartMillionaire.com