당사 팬 페이지에 가입하십시오
1 Click Button To Close All Open Positions - MetaTrader 4용 expert
- 조회수:
- 69766
- 평가:
- 게시됨:
- 2016.02.16 15:45
- 업데이트됨:
- 2016.03.24 16:15
- 이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동
Click "Close All" button to close all your open positions (regardless of the pair) at once.
This new version doesn't contain the code written below that previous versions had which may cause an infinite loop.
if(checkOrderClose==false) continue;
but instead brings an error control system to prevent an infinite loop while still closing all trades.
if(checkOrderClose == false) { int errorCode = GetLastError(); if (errorCode == 1 || errorCode == 2 || errorCode == 5 || errorCode == 6 || errorCode == 64 || errorCode == 65 || errorCode == 132 || errorCode == 133 || errorCode == 139) break; else continue; }
This is my 1st published code, it is very simple code example: RSI 14 (price close) — open buy when it is < 25, close buy when it is > 50, open sell when it is > 75, close sell when it is < 50.
FloatingSpreadThe indicator for the floating spread. Displays the change in spread of multiple currency pairs.
Spread, its moving average (EMA), its maximum and minimum, and ticks per second (market speed) in the Comment. The version 1.01 is made with the normal average, instead of the moving average.
Example of Stochastic AutomatedThe main idea of this Expert Advisor is to trade by the basic concept of Stochastic oscillator in its basic parameters, with ability to change these parameters via the EA inputs.