Page 1 of 54 1 2 3 11 51 ... LastLast
Results 1 to 10 of 540
Like Tree74Likes

Requests and Raw Ideas

This is a discussion on Requests and Raw Ideas within the General Discussion forums, part of the Trading Forum category; Alert Needed on Colored MACD - different from standard Please add alert when crosses zero line. thank you...

      
   
  1. #1
    Junior Member
    Join Date
    May 2013
    Posts
    2

    Requests and Raw Ideas

    Alert Needed on Colored MACD - different from standard

    Please add alert when crosses zero line. thank you
    Attached Files Attached Files

  2. #2
    igorad
    Guest
    Quote Originally Posted by oxbuck View Post
    Alert Needed on Colored MACD - different from standard
    Please add alert when crosses zero line. thank you

    Hi oxbuck,

    Please check out the ColorMACD with alerts.

    Regards,
    Igor

  3. #3
    Administrator newdigital's Avatar
    Join Date
    Feb 2013
    Posts
    10,474
    Blog Entries
    2911
    Follow newdigital On Twitter Add newdigital on Facebook Add newdigital on Google+ Add newdigital on MySpace
    Add newdigital on Linkedin
    Yes, this is good indicator ... and as I see - Igorad coded email alert too:

    Requests and Raw Ideas-coloredmacd.png

  4. #4
    Junior Member
    Join Date
    Jun 2013
    Posts
    10
    Hi igorad,

    Thank's for all the nice indicators.

    I think there is a little bug on the AdaptiveLaguerreRSI_v3.
    When I click on the AdapatativeMode to put it on 1, the chart fade away.

  5. #5
    Administrator newdigital's Avatar
    Join Date
    Feb 2013
    Posts
    10,474
    Blog Entries
    2911
    Follow newdigital On Twitter Add newdigital on Facebook Add newdigital on Google+ Add newdigital on MySpace
    Add newdigital on Linkedin
    Hi ffoo,

    This indicator? John Ehlers Toolbox
    If you change Length to 11 for example so it will work.
    I am not a coder but I think that Length 24 is too much for AdapatativeMode = 1.

  6. #6
    igorad
    Guest
    Quote Originally Posted by ffoo View Post
    Hi igorad,

    Thank's for all the nice indicators.

    I think there is a little bug on the AdaptiveLaguerreRSI_v3.
    When I click on the AdapatativeMode to put it on 1, the chart fade away.
    Hi ffoo,

    Please take a look at this post.

    Regards,
    Igor

  7. #7
    Junior Member
    Join Date
    Jun 2013
    Posts
    10
    It work fine now, thank you guys !

  8. #8
    Junior Member
    Join Date
    May 2013
    Posts
    2

    Thanks!

    That is perfect - thank you so much!

    Quote Originally Posted by igorad View Post
    Hi oxbuck,

    Please check out the ColorMACD with alerts.

    Regards,
    Igor

  9. #9
    Junior Member
    Join Date
    Jun 2013
    Posts
    3

    Lightbulb Calculation of average SL for multitrades

    Hi, guys!
    Is it possible to create indicator which one will show the level of average Stop loss for multytrades in accordance with risk % indicated by inputs?
    I am using indicator like this for getting calculation of an average entry price. (attached)
    Below the picture with example.
    Blue line is level of Average entry calculated by indicator.
    Red line is manually calculated level of Average stop loss.

    Requests and Raw Ideas-eurusd-h1-hf-markets-ltd.png

    Show_AverageEntryPrice.mq4

    In ьн mind the formula for calculation should be like below:
    StopLossLevel =AverageEntryLevel – StopLoss
    StopLoss = RiskMoney / PositionSize* TickSize/ UnitCost
    RiskMoney = Size * Risk / 100
    extern double Risk = 1; // Risk tolerance in percentage points
    Size = AccountBalance()
    PositionSize= OrderLots()
    UnitCost = MarketInfo(Symbol(), MODE_TICKVALUE);
    TickSize = MarketInfo(Symbol(), MODE_TICKSIZE);
    Last edited by DmitryFX; 06-15-2013 at 08:13 AM.

  10. #10
    igorad
    Guest
    Hi DmitryFX,

    Please take a look at the improved Show_AverageEntryPrice_v1 indicator where I added some new options and parameters including the average StopLoss Levels plus now you have ability to work with Long and Short Positions simultaneously.

    Code:
    extern bool    ShowMarketPrice      = true;
    extern color   ColorMarketPrice     = OrangeRed; 
    
    extern bool    ShowAvgEntryPrice    = true;
    extern color   ColorAvgBuyEntry     = LimeGreen;
    extern color   ColorAvgSellEntry    = Orange;
    
    extern bool    ShowStopLoss         = true;
    extern double  RiskFactor           = 5;           // Risk Factor(in %) for StopLoss calculation  
    extern color   ColorBuyStopLoss     = DeepSkyBlue;
    extern color   ColorSellStopLoss    = LightCoral;
    
    extern color   SwapColorLong        = Lime;
    extern color   SwapColorShort       = Red;
    
    extern bool    ShowProfit           = true;
    extern string  FontName             = "Arial Black";
    extern int     FontSize             = 10;
    extern color   ColorProfit          = DarkSalmon;
              
    extern bool    ShowLineLabels       = true;
    extern bool    ShowSwapInfo         = true;

    Attachment 1540

    Aslo you can use the updated ManualTrader_v1.2 to set StopLoses by the Risk Factor.


    Regards,
    Igor

Page 1 of 54 1 2 3 11 51 ... LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •