Go Back   BabyPips.com Forex Forum > "The Holy Grails" > Free Forex Trading Systems
Free Forex Trading Systems Got the "Holy Grail" system? Want to share it for free and become everyone's hero? This is the place to do it. (No advertisers please!) Also, follow along as our very own Pip Surfer posts daily updates from his Cowabunga System in the Pip My System Forex Blog.

Welcome to the BabyPips.com forum!

You are currently viewing our boards as a guest which allows you to view the discussions, but prevents you from contributing. By joining our FREE community you will be able to do all of the following:

  • Post topics & responses to other discussions
  • Communicate privately with other members (PM)
  • Respond to polls
  • Upload content
  • Post comments on our blogs
  • Contribute on our Forexpedia

Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.



Reply
 
LinkBack Thread Tools Display Modes
  #211 (permalink)  
Old 08-15-2008, 09:45 AM
Newbie
 

Join Date: Jul 2008
Posts: 41
Exclamation Important info for MT4 MACD Histogram users

Hi grommets,

I have been learning to code with my new toys....MT4 & MQL4. While I was checking out some code today I found out something very interesting.....

I have read through some of the threads on this forum and it looks like you guys already know that the 'built in' MT4 MACD indicator DOES NOT show the true MACD histogram at all (it plots the actual MACD line as a histogram...instead of a line).

OK....so that is where theOsMA custom indicator comes in. You just open her up and hey presto...there's the proper Histogram. Right?

WRONG.

I have read through the code and found that the OsMA signal line is created using a simple moving average...when in fact it should be an exponential MA.
I have checked out MACD formulas on quite a few sites, and they all say the same thing...
ALL MOVING AVERAGE CALCULATIONS USED TO CREATE THE TRUE MACD INDICATOR (and subsequently the MACD Histogram) ARE EXPONENTIAL MOVING AVERAGES.

"So what...big deal" I hear you say.

Well, check out the chart I made up and attached.

The top one is the dodgy built in MACD indicator (mostly useless for the cowabunga system).

The middle one is the standard OsMA custom indicator that is part of the MT4 download package (better...but there are still lumps in the porridge).

The bottom one is the OsMA with the code changed so that the MACD signal line used to generate the Histogram is calculated with EMA instead of SMA (oh yeah baby....we like it like that ).

You can see some fairly big differences - the standard Osma had a zero line crossover at the yellow vertical line, but the EMA corrected version did not cross till 3 bars later at the red vertical line. And earlier in the chart - the circled bars are the ones displayed in the data panel (one shows negative value and the other shows positive). This is quite significant when you are using these indicators to validate your entry signals.

OK....now that I have upset the apple cart, let me try and smooth things over a bit.

Instructions for amending the OsMA indicator:

*Put down your coffee.

*Open up MetaEditor (click the yellow exclamation mark icon at the top of the Meta trader screen).

*In MetaEditor - click 'File' then 'Open...' Find and select the file OsMA.mq4

*OK, now you have the code in front of you...look down at the bottom right corner of your screen...you will see a line and column reference. move the cusor through the code until you get to Ln57 Col67. Change the code from MODE_SMA to MODE_EMA.

*Save the file (change the name if you want to keep the old OsMA).

*Click where it says 'Compile' at the top of the screen.

*Close the editor and go find your new toy in The Metaquotes terminal.

*Send $500 to paypal accou.....hehe, just kidding.

Now you have your very own fair dinkum real McCoy MACD Histogram so get out your candles and wax up those boards dudes...it's COWABUNGA time!

Attached Images
File Type: jpg MACD chart.jpg (43.3 KB, 254 views)
Reply With Quote
  #212 (permalink)  
Old 08-27-2008, 02:05 PM
 

Join Date: Aug 2008
Location: NY
Posts: 6
Send a message via AIM to poonjoon Send a message via MSN to poonjoon
Default

I've read through almost every page now and found so many different files for this.

What's the difference between "cowabunga any pair" and "cowabunga any pair 2". The first one shows the down-trend line beneath the candlesticks and the latter shows the down-trend line above the candlesticks.

I have templates, zips, mq4's...I have a bunch of cowabunga files but I don't know which one to use.


If I use both indicators, the trend lines form nice channels.

Last edited by poonjoon; 08-27-2008 at 02:11 PM.
Reply With Quote
  #213 (permalink)  
Old 09-04-2008, 10:15 PM
 

Join Date: Aug 2008
Posts: 8
Question

Quote:
Originally Posted by Shane View Post
Hi grommets,

I have been learning to code with my new toys....MT4 & MQL4. While I was checking out some code today I found out something very interesting.....

I have read through some of the threads on this forum and it looks like you guys already know that the 'built in' MT4 MACD indicator DOES NOT show the true MACD histogram at all (it plots the actual MACD line as a histogram...instead of a line).

OK....so that is where theOsMA custom indicator comes in. You just open her up and hey presto...there's the proper Histogram. Right?

WRONG.

I have read through the code and found that the OsMA signal line is created using a simple moving average...when in fact it should be an exponential MA.
I have checked out MACD formulas on quite a few sites, and they all say the same thing...
ALL MOVING AVERAGE CALCULATIONS USED TO CREATE THE TRUE MACD INDICATOR (and subsequently the MACD Histogram) ARE EXPONENTIAL MOVING AVERAGES.

"So what...big deal" I hear you say.

Well, check out the chart I made up and attached.

The top one is the dodgy built in MACD indicator (mostly useless for the cowabunga system).

The middle one is the standard OsMA custom indicator that is part of the MT4 download package (better...but there are still lumps in the porridge).

The bottom one is the OsMA with the code changed so that the MACD signal line used to generate the Histogram is calculated with EMA instead of SMA (oh yeah baby....we like it like that ).

You can see some fairly big differences - the standard Osma had a zero line crossover at the yellow vertical line, but the EMA corrected version did not cross till 3 bars later at the red vertical line. And earlier in the chart - the circled bars are the ones displayed in the data panel (one shows negative value and the other shows positive). This is quite significant when you are using these indicators to validate your entry signals.

OK....now that I have upset the apple cart, let me try and smooth things over a bit.

Instructions for amending the OsMA indicator:

*Put down your coffee.

*Open up MetaEditor (click the yellow exclamation mark icon at the top of the Meta trader screen).

*In MetaEditor - click 'File' then 'Open...' Find and select the file OsMA.mq4

*OK, now you have the code in front of you...look down at the bottom right corner of your screen...you will see a line and column reference. move the cusor through the code until you get to Ln57 Col67. Change the code from MODE_SMA to MODE_EMA.

*Save the file (change the name if you want to keep the old OsMA).

*Click where it says 'Compile' at the top of the screen.

*Close the editor and go find your new toy in The Metaquotes terminal.

*Send $500 to paypal accou.....hehe, just kidding.

Now you have your very own fair dinkum real McCoy MACD Histogram so get out your candles and wax up those boards dudes...it's COWABUNGA time!

ok man I have got to the point were I change my line and col, how do i do it?
Reply With Quote
  #214 (permalink)  
Old 09-05-2008, 07:55 PM
Newbie
 

Join Date: Jul 2008
Posts: 41
Default

Hey dude,

Scroll through the code until you get to Ln57 Col67.
Where it says MODE_SMA...change the "SMA" part to "EMA".

Better yet, here's one that I prepared earlier:
(Unzip and save these files into your MetaTrader/experts/indicators folder).
Attached Files
File Type: zip MACD_Histogram.zip (2.9 KB, 198 views)
Reply With Quote
  #215 (permalink)  
Old 09-05-2008, 08:08 PM
 

Join Date: Aug 2008
Posts: 8
Default thanks man

Quote:
Originally Posted by Shane View Post
Hey dude,

Scroll through the code until you get to Ln57 Col67.
Where it says MODE_SMA...change the "SMA" part to "EMA".

Better yet, here's one that I prepared earlier:
(Unzip and save these files into your MetaTrader/experts/indicators folder).
Thanks I really do appreciate it....
Reply With Quote
  #216 (permalink)  
Old 09-10-2008, 01:03 PM
Newbie
 

Join Date: Dec 2007
Posts: 18
Default

Hi all,

Just downloaded the cowabunga any pair v2, and everything seems to be working correctly, but I was just wondering if I have to reset the indicator after every signal or will it happily churn along by itself?
Reply With Quote
  #217 (permalink)  
Old 09-15-2008, 04:18 AM
 

Join Date: Sep 2008
Posts: 1
Default Need an assitant in fx trading

Hi,

Please am a forex trader i need an expert trader that can be assisting me in trading i have invested so much in forex and loose much please i need an urgent assistant, I dont mind if it will cost me some $$$$, am not saying this to get instant help is just that i want to be among those that will be profitng in forex. Any body thats willing to help should please contact with this mail, petlife2@yahoo.com.

Thanks,

Kind Regards,
Peter.
Reply With Quote
  #218 (permalink)  
Old 09-15-2008, 06:45 AM
 

Join Date: Sep 2008
Posts: 2
Question Cowubango System

Hi to all. I am totally new and busy reading about all the diffirent trading systems. I have read about and copied the MACDcorrect.zip and Cowabunga2.zip files. I have absolutely no idea on how to get this working. I can see the name under custom indicators and heaven knows how I got it there, but it's definitely not working. Can someone PLEASE be so kind and maybe give me a step by step instruction on how to do this?
Thank you
Alan
Reply With Quote
  #219 (permalink)  
Old 09-17-2008, 01:25 PM
Newbie
 

Join Date: Nov 2007
Location: Charlotte, NC
Posts: 13
Send a message via Yahoo to heartstart
Default Cow System

Could someone explian this entry. Is this a valid entry? Just got the system today. Trying to get a handle on it. Thanks for all who help
Attached Images
File Type: jpg cow.jpg (56.3 KB, 179 views)
Reply With Quote
  #220 (permalink)  
Old 10-06-2008, 06:00 AM
 

Join Date: Aug 2008
Posts: 2
Default Trailing Stop System

Hi Members,

Anyone using VT Trader?

I want to know how to prevent the Trailing Stop System (VT Trader) from automatically opening a position after closing the former, manually opened position.

Please help

Mramba
Reply With Quote
Reply



Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT -4. The time now is 08:53 AM.
Content Relevant URLs by vBSEO 3.2.0
"A superior man is modest in his speech, but exceeds in his actions."
Confucius