[WARNING CLOSED!] Any newbie question, so as not to clutter up the forum. Professionals, don't go by. Can't go anywhere without you. - page 727

 
artmedia70:
So - screw it... :(

who? comp? tester?grail? me?
 
IgorM:

who? Comp? tester? grail? me?
Take your pick, ba'am, take your pick... :):)
 
chief2000:

How did that man help you?

Honestly? He helped me to get my mind right - he mercilessly pointed out the piles of my mistakes, helped me to remake myself, to change my character to fit the trading system. So far I have not been as successful as I would like to be. But I keep on working. I have already written about it in other branches of the forum. The guy did not pander to me - he did not spare my ego, for which he deserves credit. In short, he not only told me the basics of effective entry/exits, but also helped me to overcome psychological aspects of trading. And, most importantly, he helped me to understand that I had them.
 
IgorM:


Then a counter question - well, there are profitable EAs in the Championship, aren't there?


What can I tell you about the Championship Expert Advisors? I can't tell you anything. You'd better ask their authors.
 
Folks please help. I really need a market trawl with a magic order working on Parabolic. If anyone has one, please post it here or in private segabikerone@mail.ru
 
drknn:
Honestly? My head was set straight - I was mercilessly pointing out my mistakes, helping to remake myself, to remake my character for the trading system. So far, I haven't been as successful as I'd like to be. But I keep on working. I have already written about it in other branches of the forum. The guy did not pander to me - he did not spare my ego, and for that he deserves a lot of kudos. In short, he did not just teach me the basics of effective entry/exits, but also helped me to overcome psychological aspects of trading. And, most importantly, he helped me to understand that I had them.

If it is written in "other branches" in an instructive way, it would be interesting to read it - do you still have the links?

In general, I agree that with good teachers, the road to success is much shorter.

 
chief2000:

If it is written in "other branches" in an instructive way, it would be interesting to read it - do you still have the links?

In general, I agree that with good teachers the road to success is much shorter.


I do not keep such links. :) But this one just so happens to be in my correspondence with the guy. Here it is - https://www.mql5.com/ru/forum/127237/page36 - bottom post. I showed him this post :)
 
DaVinci:
Folks please help. I really need a market trawl with a magic order working on Parabolic. If anyone has one, please post it here or in private segabikerone@mail.ru
//+------------------------------------------------------------------+
//|                                                b-TrailingSAR.mqh |
//|                                           Ким Игорь В. aka KimIV |
//|                                              http://www.kimiv.ru |
//|                                                                  |
//|    21.11.2005  Библиотека функций трала по параболику.           |
//|  Для использования добавить строку в модуле start                |
//|  if (UseTrailing) TrailingPositionsSAR(Magic);                           |
//+------------------------------------------------------------------+
#property copyright "Ким Игорь В. aka KimIV"
#property link      "http://www.kimiv.ru"
extern string _Parameters_TrailingSAR = "----- Параметры трала SAR";
extern bool   UseTrailingSAR= True;    // Использовать трал
extern double StepParabolic = 0.02;    // Шаг параболика
extern double MaxParabolic  = 0.2;     // Максимум параболика
extern int    Interval      = 5;       // Интервал от параболика

//+------------------------------------------------------------------+
//| Сопровождение позиции тралом по параболику                       |
//+------------------------------------------------------------------+
void TrailingPositionsSAR(int mn) {
  double ldStop;
  double sar1=iSAR(NULL, 0, StepParabolic, MaxParabolic, 1);
  double sar2=iSAR(NULL, 0, StepParabolic, MaxParabolic, 2);
  int    spr=MarketInfo(Symbol(), MODE_SPREAD);
  int    stp=MarketInfo(Symbol(), MODE_STOPLEVEL);

  for (int i=0; i<OrdersTotal(); i++) {
    if (OrderSelect(i, SELECT_BY_POS, MODE_TRADES)) {
      if (OrderSymbol()==Symbol() && OrderMagicNumber()==mn) {
        if (OrderType()==OP_BUY) {
          if (sar2<sar1 && sar1<Bid-stp*Point) ldStop=sar1-Interval*Point;
          else ldStop=OrderStopLoss();
          if (OrderStopLoss()<ldStop) {
            ModifyStopLoss(ldStop, clModifyBuy);
          }
        }
        if (OrderType()==OP_SELL) {
          if (sar2>sar1 && sar1>Ask+stp*Point) ldStop=sar1+(Interval+spr)*Point;
          else ldStop=OrderStopLoss();
          if (OrderStopLoss()>ldStop || OrderStopLoss()==0) {
            ModifyStopLoss(ldStop, clModifySell);
          }
        }
      }
    }
  }
}


//+------------------------------------------------------------------+
//| Перенос уровня StopLoss                                          |
//| Параметры:                                                       |
//|   ldStopLoss - уровень StopLoss                                  |
//|   clModify   - цвет модификации                                  |
//+------------------------------------------------------------------+
void ModifyStopLoss(double ldStop, color clModify) {
  bool   fm;
  double ldOpen=OrderOpenPrice();
  double ldTake=OrderTakeProfit();
  int    err;

  if (IsTradeAllowed()) {
    fm=OrderModify(OrderTicket(), ldOpen, ldStop, ldTake, 0, clModify);
    if (!fm) {
      err=GetLastError();
      Print("Error(",err,") modifying: ",ErrorDescription(err));
    }
//    if (fm && UseSound) PlaySound(NameFileSound);
  }
}
 
As much as I've tried automatic trading, I've become more and more convinced that only with the help of MM and lots management there is some progress, and if you just use one lot and exit by stop the results in the tester are "not so good".
 
IgorM:
As much as I've tried automatic trading, I've become more and more convinced that only with the help of MM and lots management there is some progress, and if you just use one lot and exit by stop the results in the tester are "not so good".
Igor, just above, on the previous page you wrote about brainwashing... :) Follow the discussion... :):)
Reason: