Snowies EA with 3 indicators
This tool for MetaTrader 4 is specifically engineered to streamline your trading operations. This Expert Advisor serves as automated trading software. It is utilized to monitor financial markets and execute trades based on predefined algorithmic rules, enabling precise position management without the need for constant manual oversight.
How to Setup and Use Snowies EA with 3 indicators
1. Installation: Open the "File" menu, select "Open Data Folder," navigate to MQL/Experts, paste your file, and restart the terminal.
2. Activation: Drag the EA from the Navigator onto a chart, ensure "Allow live trading" is checked in the Common tab, and verify the AutoTrading button is green.
3. Optimization: Right-click your chart, choose "Expert List," click "Properties" to adjust inputs, and save your preferred setup as a set file for future use.
4. Maintenance: Regularly check the "Experts" tab in the terminal window to monitor trade logs and potential execution errors.
Frequently Asked Questions
Q: Why is my EA not opening trades? A: Check the "AutoTrading" button, ensure "Allow live trading" is enabled, and verify your broker allows automated trading on your account type.
Q: Can I run multiple EAs on one chart? A: No, each chart can only host one active EA; however, you can open multiple charts for different currency pairs to run several EAs.
Q: What does the "smiley face" icon mean? A: A smiley face in the top-right corner of the chart indicates the EA is successfully running; a frowny face means it is disabled.
Description & Settings
note ........ when you set risk to 0 it trades the lots size for every trade
reverse ...... set to true to take the opposite trade to when its set to false
Strategy Tester Report
2bar
AlpariUK-Classic-2 (Build 419)
I designed the EA but I had help in writing the code by onestep they were excellent.
The first indicator to use is called LWMA CROSSOVER SIGNAL
It basically plots 2 points on the chart were there,s a cross over of the faster and slower LW-moving averages. The first is an ARROW pointing downwards and is coloured red, which obviously shows a downward trend and is the first signal of three I would like to pick up to indicate a possible SHORT TRADE .
The second point is an arrow pointing upwards and is coloured springreen and is the first signal of three I would like to pick up to indicate the possible LONG TRADE.
LWMA VARIABLES
The variables inputs to be able to change from the LWMA indicator when Im running my EA are:
Faster lwma;
Slower lwma. Image:
LWMA CROSSOVER SIGNAL indicator
SECOND indicator is the AMA
This indicator draws a moving average line and when the line is trending upwards it plots BLUE DOTS directly on the line and when the line is trending downwards it plots GOLDDOTS on the line . It is these dots I to use for my second signals to go long or short .
Once the first signal of an RED arrow from the LWMA indicator appears in line with a candle indicating a downward trend the EA needs to look for the second indication of a GOLD DOT ONLY. Which appears on the AMA line on the SAME OR VERY NEXT CANDLE along from the first LWMA SIGNAL on the chart . Then we can move onto the last signal from the third indicator once these to signals have appeared indicating a possible SHORT TRADE
Again it will be the opposite if there is a SPRINGGREEN arrow appears from the LWMA indicator in line with a candle indicating an upward trend and if ONLY A BLUE DOT on the AMA trend line appears on the very SAME OR NEXT CANDLE ALONG from the first LWMA SIGNAL . Then we can move onto the last signal from the third indicator,indicating a possible LONG TRADE
AMA VARIABLE inputs to be able to change in my working EA are
Periodama;
nfast;
Nslow;
G;
DK. Image:
AMA indicator
THIRD INDICATOR is the FXBAY-MACD
This indicator is a standard MACD indicator, its also got a historgram plotted for the difference of the two plotted lines
ITS the historgrams points THAT help with the third signal to take a long or short trade. And also I want to use the histogram signal to help exit a long or short trade.
Image:
TAKING A LONG TRADE:
And the third signal to finaly open a LONG TRADE will be if I have the TWO signals from the LWMA and the AMA to go long(THE GREEN ARROW AND BLUE DOT) as they are giving me the trending upwards signals, as long as the HISSOGRAM from the MACD indicator on the candle where the AMA DOT signal is given is a POSITIVE NUMBER THEN TAKE THE TRADE
EXITING A LONG TRADE:
to exit a LONG TRADE as soon as the HISTOGRAM on the MACD indicator hits 0.000 (zero) or LOWER THAN ZERO.(negative number)
TAKING A SHORT TRADE:
Also if I have the TWO signals from the LWMA and the AMA to go SHORT(THE RED ARROW AND THE GOLD DOT) as they are telling me its trending downwards as long as the HISTOGRAM on the MACD INDICATOR where the AMA DOT signal is given is a NEGATIVE NUMBER, Be it on the first or second candle THEN TAKE THE SHORT TRADE
EXITING A SHORT TRADE:
I want to exit the trade if the HISTOGRAM on the MACD indicator hits 0.00 (zero) or HIGHER THAN ZERO(positive number) .
MACD VARIABLES to change in my working EA are
Fast EMA;
SlowEMA;
Signal EMA.
OTHER VARIABLES
STOP LOSS in PIPS the same for all trades,
RISK % of whats in the account.
TAKE PROFIT in pips on the EA.
ALSO WHEN TO OPEN THE TRADE on the next OPENED CANDLE or INSTANTLY AS SOON AS THE INDICATORS LINE UP
SOME GOOD VARIABLE TO TEST THE EA ON USING 15 MINUTE CHARTS:
LWMA:
Fast lwma…………. 7
Slow lwma………..30
AMA:
Period ama…………9
Nfast…………………..7
Nslow…………………30
G…………………..1.4
DK………………….3.0
MACD:
Fast ma…………..12
Slow ma……………30
Signal ………………9
times frames to use M5 up to H4.
Recommendations:
any help or ideas will be greatly appriciated
the actual ea is called snowies ea, there are also the three indicators called AMA,fx-bay_macd and lwma