View Single Post
  #8 (permalink)  
Old 12-06-2006, 08:31 AM
newdigital newdigital is offline
Administrator
 
Join Date: Sep 2005
Posts: 15,954
Blog Entries: 65
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
Quote:
Originally Posted by dr2k3
thanks for the advice...

what i mean is let say i "create" a moving average cross EA thingy, do i have to put in 2 additional moving averages(default indicator in metatrader)?
Where to put?
If you create EA based on two MA indicators crossing so you need just one MA indicator.
If you did not use icustom so you do not need anything because this MA indicator is already in default indicators folder:
Code:
double Buy1_1 = iMA(NULL, 0, 21, 0, MODE_EMA, PRICE_CLOSE, i + 1);
If you used icustom function so this MA should be in custom indicators folder.

One is enough.

Quote:
Originally Posted by dr2k3
also i m consider a programming retard......have read those metatrader programing tutorial....i can still understand abit...but when i open a EA and look at those code(trying to modify) im like X_X, so if possible explain in a simple way
(im now using metatrader EA builder due to my stupidity =/ )

also i would like to know if i can program EA to Buy/Sell when moving average is 1-2 pip(example: moving average a is 2 pip away from MA B) away from each other...if possible give an example code please and thank you ^_^
If you need to change something so use MetaEditor.
If you need to change the settings so there is EAs' navigation panel.

Yes, you can program (two pips away etc).

I modified wma indicator once again.
Please find:
- wma_cross6 indicator (with delata for sell and delta for buy. But it is necessary to find the good settings of EMAs and delta's.
- wma_cross5.1 (the same with wma_cross6 but together with RSI).
Attached Images
File Type: gif wma_cross6.gif (20.5 KB, 117 views)
Attached Files
File Type: mq4 wma_cross5.1.mq4 (4.2 KB, 47 views)
File Type: mq4 wma_cross6.mq4 (3.9 KB, 49 views)
Reply With Quote