Forex Forum
Signal: Strategies CLEAR_VISION
Quote from Support@fxpip.one on 16/10/2023, 12:35Red color will show what parameters each strategy will be used.
Strategy #1 Sell Top and Buy Low pair with signal value (antitrend)
UsedIndicator = 1; // 1=MA %, 2=MA_Jump %, 3=RSI %, 4-ATR %, 5-STOCH %, 6-TMA %
TypeClearVison = 1; // Antitrend, sell Top and buy Low pair.
ReverseSignal = false; // will be used in next versions of EA
Index_TF = PERIOD_M5;
MaxBars = 210;
Index_MA_Period = 21; // period of MA in MA and MA_Jump strategies.
SignalPerc = 0.1; // For Color indication
SignalEntry = 50; // For signal Power entries used in different strategies.If pair in TOP of CustorPairBlock and SignalEntry > 50 EA will sell it.
If pair in LOW of CustorPairBlock and SignalEntry < -50 EA will buy it.
Red color will show what parameters each strategy will be used.
Strategy #1 Sell Top and Buy Low pair with signal value (antitrend)
UsedIndicator = 1; // 1=MA %, 2=MA_Jump %, 3=RSI %, 4-ATR %, 5-STOCH %, 6-TMA %
TypeClearVison = 1; // Antitrend, sell Top and buy Low pair.
ReverseSignal = false; // will be used in next versions of EA
Index_TF = PERIOD_M5;
MaxBars = 210;
Index_MA_Period = 21; // period of MA in MA and MA_Jump strategies.
SignalPerc = 0.1; // For Color indication
SignalEntry = 50; // For signal Power entries used in different strategies.
If pair in TOP of CustorPairBlock and SignalEntry > 50 EA will sell it.
If pair in LOW of CustorPairBlock and SignalEntry < -50 EA will buy it.
Quote from Support@fxpip.one on 16/10/2023, 13:15Strategy #2 Index7 (antitrend)
if IndexXXX>SignalEntry EA will sell XXXYYY and buy YYYXXX:
if IndexXXX<-SignalEntry EA will buy XXXYYY and sell YYYXXX:UsedIndicator = 1; // 1=MA, 2=MA_Jump, 3=RSI, 4-ATR, 5-STOCH
TypeClearVison = 2; // Antitrend Index7
ReverseSignal = false; // will be used in next versions of EA
Index_TF = PERIOD_M5;
MaxBars = 210; // parameter will be used only in MA_Jump for calc max % of MA Jump at this bars
Index_MA_Period = 21; // period of MA in MA and MA_Jump strategies.
SignalPerc = 0.1; // For Color indication
SignalEntry = 50; // For signal Power entries used in different strategies.Here CHF > SignalEntry = 50 . EA will SELL CHFYYY and BUY YYYCHF pairs:
Under 1 index will be opened 7 pairs same time
Strategy #2 Index7 (antitrend)
if IndexXXX>SignalEntry EA will sell XXXYYY and buy YYYXXX:
if IndexXXX<-SignalEntry EA will buy XXXYYY and sell YYYXXX:
UsedIndicator = 1; // 1=MA, 2=MA_Jump, 3=RSI, 4-ATR, 5-STOCH
TypeClearVison = 2; // Antitrend Index7
ReverseSignal = false; // will be used in next versions of EA
Index_TF = PERIOD_M5;
MaxBars = 210; // parameter will be used only in MA_Jump for calc max % of MA Jump at this bars
Index_MA_Period = 21; // period of MA in MA and MA_Jump strategies.
SignalPerc = 0.1; // For Color indication
SignalEntry = 50; // For signal Power entries used in different strategies.
Here CHF > SignalEntry = 50 . EA will SELL CHFYYY and BUY YYYCHF pairs:
Under 1 index will be opened 7 pairs same time
Quote from Support@fxpip.one on 16/10/2023, 14:05Strategy #3 IndexXXX-IndexYYY (antitrend)
if IndexXXX-IndexYYY>0 EA will sell XXXYYY
if IndexXXX-IndexYYY<0 EA will buy XXXYYYStrategy #333 IndexXXX-IndexYYY (trend)
if IndexXXX-IndexYYY>0 EA will buy XXXYYY
if IndexXXX-IndexYYY<0 EA will sell XXXYYYUsedIndicator = 1; // 1=MA, 2=MA_Jump, 3=RSI, 4-ATR, 5-STOCH
TypeClearVison = 3; // Antitrend IndexXXX-IndexYYY
ReverseSignal = false; // will be used in next versions of EA
Index_TF = PERIOD_M5;
MaxBars = 210; // parameter will be used only in MA_Jump for calc max % of MA Jump at this bars
Index_MA_Period = 21; // period of MA in MA and MA_Jump strategies.
SignalPerc = 0.1; // For Color indication
SignalEntry = 50; // For signal Power entries used in different strategies.Here CHF=-35.39 > CAD=-55.22
We can build regular market pair = CADCHF with SELL signal. Same with all other 28 pairs at the same time.
Strategy #3 IndexXXX-IndexYYY (antitrend)
if IndexXXX-IndexYYY>0 EA will sell XXXYYY
if IndexXXX-IndexYYY<0 EA will buy XXXYYY
Strategy #333 IndexXXX-IndexYYY (trend)
if IndexXXX-IndexYYY>0 EA will buy XXXYYY
if IndexXXX-IndexYYY<0 EA will sell XXXYYY
UsedIndicator = 1; // 1=MA, 2=MA_Jump, 3=RSI, 4-ATR, 5-STOCH
TypeClearVison = 3; // Antitrend IndexXXX-IndexYYY
ReverseSignal = false; // will be used in next versions of EA
Index_TF = PERIOD_M5;
MaxBars = 210; // parameter will be used only in MA_Jump for calc max % of MA Jump at this bars
Index_MA_Period = 21; // period of MA in MA and MA_Jump strategies.
SignalPerc = 0.1; // For Color indication
SignalEntry = 50; // For signal Power entries used in different strategies.
Here CHF=-35.39 > CAD=-55.22
We can build regular market pair = CADCHF with SELL signal. Same with all other 28 pairs at the same time.
Quote from Support@fxpip.one on 17/10/2023, 12:28Strategy #4 Antitrend : Top and Low of same index
UsedIndicator = 1; // 1=MA, 2=MA_Jump, 3=RSI, 4-ATR, 5-STOCH
TypeClearVison = 4; // Antitrend : Top and Low of same index
ReverseSignal = false; // will be used in next versions of EA
Index_TF = PERIOD_M5;
MaxBars = 210; // parameter will be used only in MA_Jump for calc max % of MA Jump at this bars
Index_MA_Period = 21; // period of MA in MA and MA_Jump strategies.
SignalPerc = 0.1; // For Color indication
SignalEntry = 50; // For signal Power entries used in different strategies.
Strategy #4 Antitrend : Top and Low of same index
UsedIndicator = 1; // 1=MA, 2=MA_Jump, 3=RSI, 4-ATR, 5-STOCH
TypeClearVison = 4; // Antitrend : Top and Low of same index
ReverseSignal = false; // will be used in next versions of EA
Index_TF = PERIOD_M5;
MaxBars = 210; // parameter will be used only in MA_Jump for calc max % of MA Jump at this bars
Index_MA_Period = 21; // period of MA in MA and MA_Jump strategies.
SignalPerc = 0.1; // For Color indication
SignalEntry = 50; // For signal Power entries used in different strategies.
Quote from Support@fxpip.one on 17/10/2023, 12:44Strategy #5 Triangle+HedgeUSD. We have EUR GBP indexes and SignalEntry = 50.
If index EUR-GBP > SignalEntry :
EURUSD sell
EURGBP sell
GBPUSD buy
Result of such entry : sell 2 times EUR, buy 2 times GBP and Hedge USDor
If index EUR-GBP < -SignalEntry :
EURUSD buy
EURGBP buy
GBPUSD sell
Result of such entry : buy 2 times EUR, sell 2 times GBP and Hedge USDsame we do for all next Indexes accross Hedging USD:
(EUR<>CHF) EURUSD + EURCHF + USDCHF
(EUR<>AUD) EURUSD + EURAUD + AUDUSD
….UsedIndicator = 1; // 1=MA, 2=MA_Jump, 3=RSI, 4-ATR, 5-STOCH
TypeClearVison = 5; // Triangle+HedgeUSD
ReverseSignal = false; // will be used in next versions of EA
Index_TF = PERIOD_M5;
MaxBars = 210; // parameter will be used only in MA_Jump for calc max % of MA Jump at this bars
Index_MA_Period = 21; // period of MA in MA and MA_Jump strategies.
SignalPerc = 0.1; // For Color indication
SignalEntry = 50; // For signal Power entries used in different strategies.
Strategy #5 Triangle+HedgeUSD. We have EUR GBP indexes and SignalEntry = 50.
If index EUR-GBP > SignalEntry :
EURUSD sell
EURGBP sell
GBPUSD buy
Result of such entry : sell 2 times EUR, buy 2 times GBP and Hedge USD
or
If index EUR-GBP < -SignalEntry :
EURUSD buy
EURGBP buy
GBPUSD sell
Result of such entry : buy 2 times EUR, sell 2 times GBP and Hedge USD
same we do for all next Indexes accross Hedging USD:
(EUR<>CHF) EURUSD + EURCHF + USDCHF
(EUR<>AUD) EURUSD + EURAUD + AUDUSD
….
UsedIndicator = 1; // 1=MA, 2=MA_Jump, 3=RSI, 4-ATR, 5-STOCH
TypeClearVison = 5; // Triangle+HedgeUSD
ReverseSignal = false; // will be used in next versions of EA
Index_TF = PERIOD_M5;
MaxBars = 210; // parameter will be used only in MA_Jump for calc max % of MA Jump at this bars
Index_MA_Period = 21; // period of MA in MA and MA_Jump strategies.
SignalPerc = 0.1; // For Color indication
SignalEntry = 50; // For signal Power entries used in different strategies.
Quote from Support@fxpip.one on 21/10/2023, 23:11Strategy #6 Index Channel * 0.9 (antitrend)
EA use Index Max=7.10 and Index Low=-8.31 and calculate difference = 7.10-(-8.31) = 15.41
Sell pair XXXYYY if index (XXX-YYY)*0.9 > 15.41
Buy pair XXXYYY if index (XXX-YYY)*0.9 < -15.41
Strategy #6 Index Channel * 0.9 (antitrend)
EA use Index Max=7.10 and Index Low=-8.31 and calculate difference = 7.10-(-8.31) = 15.41
Sell pair XXXYYY if index (XXX-YYY)*0.9 > 15.41
Buy pair XXXYYY if index (XXX-YYY)*0.9 < -15.41
Quote from Support@fxpip.one on 21/10/2023, 23:28Strategy #7 Accross own TOP/LOW index (antitrend)
If index EUR in TOP of Indexes (EUR=7.10 )
Sell EUR pairs if their values > index EURIf index JPY in LOW of Indexes (JPY=-8.31)
Buy JPY pair if their values < index JPY
Strategy #7 Accross own TOP/LOW index (antitrend)
If index EUR in TOP of Indexes (EUR=7.10 )
Sell EUR pairs if their values > index EUR
If index JPY in LOW of Indexes (JPY=-8.31)
Buy JPY pair if their values < index JPY
Quote from Support@fxpip.one on 25/10/2023, 07:12Strategy #8 Stronger back to own Index (antitrend)
Example for EUR pairs:
EA look at EUR index=3.13 and see LOW (EURCHF=-13.26) and TOP (EURGBP=17.46) EUR pair…EURGBP – EUR <> EURCHF-EUR
17.46-3.13 = 14.33 <> -13.26-3.13 = -16.39EA will buy EURCHF because it step away from EUR index stronger as EURGBP
Same logic will be used for other indexes and its pairs
Strategy #8 Stronger back to own Index (antitrend)
Example for EUR pairs:
EA look at EUR index=3.13 and see LOW (EURCHF=-13.26) and TOP (EURGBP=17.46) EUR pair…
EURGBP – EUR <> EURCHF-EUR
17.46-3.13 = 14.33 <> -13.26-3.13 = -16.39
EA will buy EURCHF because it step away from EUR index stronger as EURGBP
Same logic will be used for other indexes and its pairs
Quote from Support@fxpip.one on 25/10/2023, 10:04Strategy #9 Pair value +- into reverse (antitrend)
If pair value > SignalEntry = sell
If pair value < -SignalEntry = buyStrategy #99 Pair value +- into trend (trend)
If pair value > SignalEntry = buy
If pair value < -SignalEntry = sell——————————————–
EA will trade all 28 pairs and can open in default many orders! But you can post in PairsForTrading only pairs that you like to trade – in this case EA wll trade only specific pairs that you choosed.
Strategy #9 Pair value +- into reverse (antitrend)
If pair value > SignalEntry = sell
If pair value < -SignalEntry = buy
Strategy #99 Pair value +- into trend (trend)
If pair value > SignalEntry = buy
If pair value < -SignalEntry = sell
——————————————–
EA will trade all 28 pairs and can open in default many orders! But you can post in PairsForTrading only pairs that you like to trade – in this case EA wll trade only specific pairs that you choosed.
Quote from Support@fxpip.one on 25/10/2023, 10:42Strategy #10 3 TOP pairs SELL + 3 DOWN pairs BUY (antitrend)
Strategy #11 2 TOP pairs SELL + 2 DOWN pairs BUY (antitrend)
Strategy #10 3 TOP pairs SELL + 3 DOWN pairs BUY (antitrend)
Strategy #11 2 TOP pairs SELL + 2 DOWN pairs BUY (antitrend)
Quote from Support@fxpip.one on 25/10/2023, 13:16Strategy #12 JPY & USD pairs (antitrend)
EA compare indexes JPY <> USD.
If JPY>USD we sell JPYXXX (buy XXXJPY) pairs and buy USDXXX (sell XXXUSD) pairs.
If JPY<USD we buy JPYXXX (sell XXXJPY) pairs and sell USDXXX (buy XXXUSD) pairs.Strategy #13 JPY & USD pairs (trend)
EA compare indexes JPY <> USD.
If JPY>USD we buy JPYXXX (sell XXXJPY) pairs and sell USDXXX (buy XXXUSD) pairs.
If JPY<USD we sell JPYXXX (buy XXXJPY) pairs and buy USDXXX (sell XXXUSD) pairs.
Strategy #12 JPY & USD pairs (antitrend)
EA compare indexes JPY <> USD.
If JPY>USD we sell JPYXXX (buy XXXJPY) pairs and buy USDXXX (sell XXXUSD) pairs.
If JPY<USD we buy JPYXXX (sell XXXJPY) pairs and sell USDXXX (buy XXXUSD) pairs.
Strategy #13 JPY & USD pairs (trend)
EA compare indexes JPY <> USD.
If JPY>USD we buy JPYXXX (sell XXXJPY) pairs and sell USDXXX (buy XXXUSD) pairs.
If JPY<USD we sell JPYXXX (buy XXXJPY) pairs and buy USDXXX (sell XXXUSD) pairs.
Quote from Support@fxpip.one on 08/01/2024, 17:24Strategy #777 Manual Pair Signal from file CV_777.txt first time and total auto in NextSeries from indicator (if file not exist EA will create it automatically and will use current sort of indicator)
Open or create file CV_777.txt and add your pair as signals – EA will pickup and trade them.
First line is a Buy pairs signal, second line is a Sell pairs signalEURUSD,NZDJPY,AUDNZD,CADCHF,GBPJPY,USDCHF,AUDCHF,EURJPY,GBPNZD,NZDUSD,EURCAD
USDJPY,AUDCAD,NZDCHF,CHFJPY,GBPAUD,AUDUSD,EURCHF,AUDJPY,EURNZD,GBPUSD,NZDCADIn set file – UsedIndicator can be any, just for visual help to make design in manual signal for file
Signal File must be placed here MQL5\Files\FXPIP_Signals\CV_777.txt
MultiPover=true and LastTP =true will let you open and close multigrid levels at all pairs at the same time.
After EA reach MAX_Equity Profit and close all orders it delete signal file of Strategy CV_777.txt and read new pairs from indicator and write same new file with new pairs that changed in sort of indicator. It means that at start before trading EA can read one time your manual CV_777.txt signal and after reach MaxEquityProfit EA will re-create new file with new pairs using indicator. If you not need it turnoff EA after it close all orders.
Strategy #777 Manual Pair Signal from file CV_777.txt first time and total auto in NextSeries from indicator (if file not exist EA will create it automatically and will use current sort of indicator)
Open or create file CV_777.txt and add your pair as signals – EA will pickup and trade them.
First line is a Buy pairs signal, second line is a Sell pairs signal
EURUSD,NZDJPY,AUDNZD,CADCHF,GBPJPY,USDCHF,AUDCHF,EURJPY,GBPNZD,NZDUSD,EURCAD
USDJPY,AUDCAD,NZDCHF,CHFJPY,GBPAUD,AUDUSD,EURCHF,AUDJPY,EURNZD,GBPUSD,NZDCAD
In set file – UsedIndicator can be any, just for visual help to make design in manual signal for file
Signal File must be placed here MQL5\Files\FXPIP_Signals\CV_777.txt
MultiPover=true and LastTP =true will let you open and close multigrid levels at all pairs at the same time.
After EA reach MAX_Equity Profit and close all orders it delete signal file of Strategy CV_777.txt and read new pairs from indicator and write same new file with new pairs that changed in sort of indicator. It means that at start before trading EA can read one time your manual CV_777.txt signal and after reach MaxEquityProfit EA will re-create new file with new pairs using indicator. If you not need it turnoff EA after it close all orders.
Quote from Support@fxpip.one on 06/02/2024, 15:52Added TMA % as indicator #6 into ClearVision:
UsedIndicator = 6; // 1=MA, 2=MA_Jump, 3=RSI, 4-ATR, 5-STOCH, 6-TMA%
To setup parameters of TMA in CLEAR VISION please use specific area with green color for indicator ( clear vision use only one Slow TMA ):
PARAMETRS TMA ind Strategies
TypeTMAFiltre=0;
TMA_InitTF = PERIOD_H1;
TMA_All_Bars = 1000;
TMA_HalfLengthFast = 56;
TMA_HalfLengthSlow = 224;
TMA_PriceFast = PRICE_CLOSE;
TMA_PriceSlow = PRICE_CLOSE;
TMA_ATRMultiplierFast = 2.0;
TMA_ATRMultiplierSlow = 4.0;
TMA_ATRPeriodFast = 100;
TMA_ATRPeriodSlow = 400;
KeepTMAxOposite = true;
Added TMA % as indicator #6 into ClearVision:
UsedIndicator = 6; // 1=MA, 2=MA_Jump, 3=RSI, 4-ATR, 5-STOCH, 6-TMA%
To setup parameters of TMA in CLEAR VISION please use specific area with green color for indicator ( clear vision use only one Slow TMA ):
PARAMETRS TMA ind Strategies
TypeTMAFiltre=0;
TMA_InitTF = PERIOD_H1;
TMA_All_Bars = 1000;
TMA_HalfLengthFast = 56;
TMA_HalfLengthSlow = 224;
TMA_PriceFast = PRICE_CLOSE;
TMA_PriceSlow = PRICE_CLOSE;
TMA_ATRMultiplierFast = 2.0;
TMA_ATRMultiplierSlow = 4.0;
TMA_ATRPeriodFast = 100;
TMA_ATRPeriodSlow = 400;
KeepTMAxOposite = true;
Quote from Support@fxpip.one on 10/05/2024, 15:50Strategy #888 with buttons control signals of 1) Each Pair + 2) 8×7 indexes trading
Every pair will be traded with PipStep and LastTP as it posted in inputs separatelly (every pair work separatelly from others)
More info in this Video https://youtu.be/8K7JKY7a2p4?si=ryioz0Js6rH8XN4O
Strategy #888 with buttons control signals of 1) Each Pair + 2) 8×7 indexes trading
Every pair will be traded with PipStep and LastTP as it posted in inputs separatelly (every pair work separatelly from others)
More info in this Video https://youtu.be/8K7JKY7a2p4?si=ryioz0Js6rH8XN4O
Quote from Support@fxpip.one on 10/05/2024, 15:56Strategy #8888 + (ReverseSignal=false) automated strategy for retrasement at the end of Day (H4 and Higher TF)
EA look at 3 top and 3 low sorted Currencies and build 5 pairs for Entry at same time.
You can entry with your risk and turnoff autotrading or shutdown terminal. Then after night or later check profit. Not need trade all day or all night.More info in this Video: https://youtu.be/EKM8qS4VjQs?si=Mi-8ssuwQjfqyKDy
____________
Strategy #8888 + (ReverseSignal=true)
Same as 8888 + ReverseSignal=false but opposite signal in Trend 5 pairs same time!
Strategy #8888 + (ReverseSignal=false) automated strategy for retrasement at the end of Day (H4 and Higher TF)
EA look at 3 top and 3 low sorted Currencies and build 5 pairs for Entry at same time.
You can entry with your risk and turnoff autotrading or shutdown terminal. Then after night or later check profit. Not need trade all day or all night.
More info in this Video: https://youtu.be/EKM8qS4VjQs?si=Mi-8ssuwQjfqyKDy
____________
Strategy #8888 + (ReverseSignal=true)
Same as 8888 + ReverseSignal=false but opposite signal in Trend 5 pairs same time!
Quote from Support@fxpip.one on 13/05/2024, 16:50Strategy #15 use 3 2 1 candless back to see Cross of Zero in each PairValue in ClearVision indicator
If closed Candle #3 (3 cadle back , cerrent candle = 0) have value < 0 and Candle #2 < 0 but Candle #1 > 0 by PairValue = EA entry BUY.
If closed Candle #3 (3 cadle back , cerrent candle = 0) have value > 0 and Candle #2 > 0 but Candle #1 < 0 by PairValue = EA entry SELL.
Strategy #16 use 3 2 1 candless back to see Cross of Zero in each IndexValue in ClearVision indicator
Same as 15 but in use 8 indexes values (not each pair) and trade 7 pairs that have this Index
______Keep in mind that it can keep signal only 1 current bar – at next bar can be no signal. Can be modified in future after some tests
______
Coded from Andi Task :
Strategy #15 use 3 2 1 candless back to see Cross of Zero in each PairValue in ClearVision indicator
If closed Candle #3 (3 cadle back , cerrent candle = 0) have value < 0 and Candle #2 < 0 but Candle #1 > 0 by PairValue = EA entry BUY.
If closed Candle #3 (3 cadle back , cerrent candle = 0) have value > 0 and Candle #2 > 0 but Candle #1 < 0 by PairValue = EA entry SELL.
Strategy #16 use 3 2 1 candless back to see Cross of Zero in each IndexValue in ClearVision indicator
Same as 15 but in use 8 indexes values (not each pair) and trade 7 pairs that have this Index
______
Keep in mind that it can keep signal only 1 current bar – at next bar can be no signal. Can be modified in future after some tests
______
Coded from Andi Task :
Quote from Support@fxpip.one on 15/05/2024, 13:21UsedIndicator = ADR
Can work at any TF – it calculate clear pips iClose-iOpen at TF. Make sence only use D1
UsedIndicator = ADR
Can work at any TF – it calculate clear pips iClose-iOpen at TF. Make sence only use D1
Quote from Support@fxpip.one on 11/12/2024, 11:17Strategy #18
If EA see pending order with comment = BUY_JPY it will buy JPY in all JPY pairs : XXXJPY sell.
If EA see pending order with comment = BUY_GBP it will buy GBP in all GBP pairs : GBPXXX buy and XXXGBP sell.
Strategy #18
If EA see pending order with comment = BUY_JPY it will buy JPY in all JPY pairs : XXXJPY sell.
If EA see pending order with comment = BUY_GBP it will buy GBP in all GBP pairs : GBPXXX buy and XXXGBP sell.
Quote from Support@fxpip.one on 11/12/2024, 11:26Strategy #21 Only USD pairs (trend)
if USD > 0 and USDXXX > 0 = buy
if USD > 0 and XXXUSD < 0 = sellif USD < 0 and USDXXX < 0 = sell
if USD < 0 and XXXUSD > 0 = buy
Strategy #21 Only USD pairs (trend)
if USD > 0 and USDXXX > 0 = buy
if USD > 0 and XXXUSD < 0 = sell
if USD < 0 and USDXXX < 0 = sell
if USD < 0 and XXXUSD > 0 = buy
Quote from Support@fxpip.one on 19/12/2024, 10:12Strategy #22 (trend)
Pair = XXX/YYY, where XXX=Numerator and YYY=Divider
Total automated signal:
BUY: if indexes in indicator XXX>YYY and Pair signal>0
SELL: if indexes in indicator XXX<YYY and Pair signal<0How to use EA MPGO as Semi-Automated Tool that can close you Manual entries from ClerVisionBars indicator Crosses in this video:
In version v5.0.2.8.6 added 2 new parameters for this:
OnlyOneTypeOrders = true // If current signal Sell – ea trade and can keep only Sell direction and not open any Buy positions (if you will add Buy position – EA will close it), but if signal Sell change to Buy – EA close all Sell positions at this pair and keep hold only Buy positions. Manual positions can have any magic numbers to be closed at crosses of indicator. If you wanna use also LastTP and LastSL in pips you need to open positions same as EA open (buy 1000-1999, sell: 4000-4999 using scripts)
SignalBarCV = 0 // what signal Bar use for entry in Strategy CV #22 and close at Crosses, 0=Current not Closed Bar (can repaints), 1=previous closed Bar
Strategy #22 (trend)
Pair = XXX/YYY, where XXX=Numerator and YYY=Divider
Total automated signal:
BUY: if indexes in indicator XXX>YYY and Pair signal>0
SELL: if indexes in indicator XXX<YYY and Pair signal<0
How to use EA MPGO as Semi-Automated Tool that can close you Manual entries from ClerVisionBars indicator Crosses in this video:
In version v5.0.2.8.6 added 2 new parameters for this:
OnlyOneTypeOrders = true // If current signal Sell – ea trade and can keep only Sell direction and not open any Buy positions (if you will add Buy position – EA will close it), but if signal Sell change to Buy – EA close all Sell positions at this pair and keep hold only Buy positions. Manual positions can have any magic numbers to be closed at crosses of indicator. If you wanna use also LastTP and LastSL in pips you need to open positions same as EA open (buy 1000-1999, sell: 4000-4999 using scripts)
SignalBarCV = 0 // what signal Bar use for entry in Strategy CV #22 and close at Crosses, 0=Current not Closed Bar (can repaints), 1=previous closed Bar
Access to forum downloads and updates only for Clients that Purchased EA MPGO (MT5)