EA_PSar_002B_v1

0
(0)
이름:
EA_PSar_002B_v1
작가: 기초 외환 (2010.09.22 15:27)
다운로드됨: 3520
다운로드:
EA_PSar_002B_v1 1
EA_PSar_002B_v1.mq4 (6.4 kb) 보다
EA_PSar_002B_v1 1 EA_PSar_002B_WHRoeder.mq4 (7.0 kb) 보다
 

EA_PSar_002B_v1 designed on the idea of the indicator Nik_PSAR_2B (http://codebase.mql4.com/6934).

EA tested and optimized on FXDD’s MT4 trading platforms.

This is a sample version of the EA.

All active traders will be able to receive (with some conditions) a free full version of this EA ([email protected]).

EA_PSar_002B_v1 3

7 코멘트 새 댓글을 게시하려면, 제발 로그인 또는 등록하다

제발, I will like to include a money management technique to my EA. The idea is to let only a fraction of your total margin be in use at any instant. 예를 들어, you can use only 50% of account; ~와 함께 50% margin usage the EA risk only 50% of account in worst scenario. Any help as to how to generate this code and include it in my EA at http://www.mql4.com/users/brayt? You can find details of where this idea is applied at http://www.fxpromaker.com/advanced50.html. ANY HELP PLEASE!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
06.10.2010 15:47 brayt

maxfor:
Nice work basis...

I built myself one on Nik_PSAR_2b as well using pending orders on EURUSD H1. I dubbed it "Craptacular" - my code is crappy but it had surprising results...

EA_PSar_002B_v1 4

I really like the concept of that indicator...

Great work on your interpretation.

최대.

 

잘 했어!

24.09.2010 17:45 기초 외환

WHRoeder:
  1. Don't hard code numbers
    // a = NormalizeDouble((PercentMM * AccountFreeMargin() / 100000), 1); // Valid IFF minlot and lotstep == 0.1
    //      만약에(ㅏ > 49.9) 반품(49.9);
    //      else if(ㅏ < 0.1)
    a = (PercentMM * AccountFreeMargin() / 100000),
    double LotStep = MarketInfo(상징(), MODE_LOTSTEP),   //IBFX= 0.01
           maxLot  = MarketInfo(상징(), MODE_MAXLOT ),   //IBFX=50.00
           minLot  = MarketInfo(상징(), MODE_MINLOT );   //IBFX= 0.01
                                                           //Was IBFX= 0.10
    a =  MathFloor(a/LotStep)*LotStep;
           만약에 (ㅏ > maxLot) 반품(maxLot);
           만약에 (ㅏ < minLot)
    ...

  2. The EA should adjust SL/TP/ and slippage for 5 숫자 중개인
    //++++ 이는 다음과 같이 조정됩니다. 5 숫자 중개인.
    더블 pips2포인트,    // 미끄러짐  3 pips    3=points    30=points
            pips2dbl;       // 스톱로스 15 핍    0.0015      0.00150
    정수 숫자.pips;    // DoubleToStr(DBL/pips2dbl, 숫자.pips)
    int 초기화(){
        만약에 (숫자 == 5 || 숫자 == 3){    // 5개로 조정 (5) 숫자 중개인.
                    pips2dbl = 포인트*10; pips2포인트 = 10;   숫자.pips = 1;
        } 또 다른 {    pips2dbl = 포인트;    pips2포인트 =  1;   숫자.pips = 0; }
        // 주문보내기(... 미끄러짐.핍 * pips2포인트, 매기다 - 정지손실핍 * pips2dbl

감사합니다.

24.09.2010 17:44 기초 외환

  1. Don't hard code numbers
    // a = NormalizeDouble((PercentMM * AccountFreeMargin() / 100000), 1); // Valid IFF minlot and lotstep == 0.1
    //      만약에(ㅏ > 49.9) 반품(49.9);
    //      else if(ㅏ < 0.1)
    a = (PercentMM * AccountFreeMargin() / 100000),
    double LotStep = MarketInfo(상징(), MODE_LOTSTEP),   //IBFX= 0.01
           maxLot  = MarketInfo(상징(), MODE_MAXLOT ),   //IBFX=50.00
           minLot  = MarketInfo(상징(), MODE_MINLOT );   //IBFX= 0.01
                                                           //Was IBFX= 0.10
    a =  MathFloor(a/LotStep)*LotStep;
           만약에 (ㅏ > maxLot) 반품(maxLot);
           만약에 (ㅏ < minLot)
    ...

  2. The EA should adjust SL/TP/ and slippage for 5 숫자 중개인
    //++++ 이는 다음과 같이 조정됩니다. 5 숫자 중개인.
    더블 pips2포인트,    // 미끄러짐  3 pips    3=points    30=points
            pips2dbl;       // 스톱로스 15 핍    0.0015      0.00150
    정수 숫자.pips;    // DoubleToStr(DBL/pips2dbl, 숫자.pips)
    int 초기화(){
        만약에 (숫자 == 5 || 숫자 == 3){    // 5개로 조정 (5) 숫자 중개인.
                    pips2dbl = 포인트*10; pips2포인트 = 10;   숫자.pips = 1;
        } 또 다른 {    pips2dbl = 포인트;    pips2포인트 =  1;   숫자.pips = 0; }
        // 주문보내기(... 미끄러짐.핍 * pips2포인트, 매기다 - 정지손실핍 * pips2dbl
24.09.2010 17:14 WHRoeder

Hi Max, this looks great, could you post your EA here perhaps?

감사해요,

Andre

24.09.2010 13:07 Powerpack2008

Nice work basis...

I built myself one on Nik_PSAR_2b as well using pending orders on EURUSD H1. I dubbed it "Craptacular" - my code is crappy but it had surprising results...

EA_PSar_002B_v1 4

I really like the concept of that indicator...

Great work on your interpretation.

최대.

 

이 게시물이 얼마나 유용했나요??

평가하려면 별표를 클릭하세요.!

평균 평점 0 / 5. 투표수: 0

현재까지 투표가 없습니다! 이 게시물을 가장 먼저 평가해 보세요..

이 게시물이 귀하에게 도움이 되지 못했다니 죄송합니다!

이 게시물을 개선해 보겠습니다.!

이 게시물을 개선할 수 있는 방법을 알려주세요.?



작가: 외환 위키 팀
우리는 경험이 풍부한 Forex 트레이더 팀입니다. [2000-2023] 우리 자신의 조건에 따라 삶을 살기 위해 헌신하는 사람들. 우리의 주요 목표는 재정적 독립과 자유를 얻는 것입니다., 우리는 자기 교육을 추구하고 Forex 시장에서 자립 가능한 라이프 스타일을 달성하기 위한 수단으로 광범위한 경험을 얻었습니다..