PPO Indicator Improvement

仕事が完了した

実行時間10 日

指定

I would like to improve my previous indicator (Percentage Price Oscillator).


Because the existing version got too many bug, so i will directly give you the formula and you can make the improvement as mention below.


    ====================================================================================


    Abnormal candlestick size measurement

    Use Price increment as source of the data.

    Source code: (https://www.mql5.com/ru/code/18896)

    The origanl equation is to calculate the price difference between current close price and previous close price. I want to make slight change 



    3 new changable mode of calculation (only show 1 mode type at a time - changable in setting)

    1. Current open to high low
      1. When close > oprn (bull candle) = high - open (Show +ve histogram)
      2. When close < open (bear candle) = low - open (Show -ve histogram)
      3. When close = open (doji candle) = Reference to prevous candle. (If is bull, then it consider this candle as bull = +ve histogram)
    2. ATR period = (1) / High to low of current candle
      1. Bull candle = ATR (1) +ve histogram
      2. Bear candle = ATR (1) - ve histogram
      3. Doiji = Reference to prevous candle. (If is bull, then it consider this candle as bull = +ve histogram)
    3. Current high or low to a moving average
      1. Moving aveage = EMA (2), Price Typical, shift 0
      2. Above MA = High to MA distance (+ve histogram)
      3. Below MA = Low to MA distance (-ve historgram)


    Colour settings

    +ve histogram = DarkGreen

    -ve histogram = Maroon

    Histogram size = 2


    Peak capturing algorithm

    Here I want to use 3 changable mode to capture abnormality (only show 1 mode type at a time - changable in setting)

    1. Standard diaviation (SD) band on the data above
      1. Mean Period = 400
      2. Standard deviation (Seperate up and down as I need adjustment later, but this is the default)
        1. Up = 2.0
        2. Down = 2.0
      3. I want to filter outlier in the standard deviation and mean calculation
        1. Setting: Filter outlier = True
        2. Any value outside +- 2.698 SD is consider as outlier
        3. Approach = ignore it as part of meand and SD calculation
          1. Eg. 400 data initially, 5 discovered to be larger than +-2.698 SD
          2. 400-5 = 395 (only 395 data will take to count mean and SD)
          3. The 395 mean and SD will plotted in the 1 bar before current bar data
      4. It is a rolling standard deviation and mean calculation, but it will not count on the current candle before it close
        1. Hence current bar SD and mean just copy from previous
    2. Based on time zone
      1. 3 major timezone (in 24 hour format)
        1. Tokyo = 00 - 08
        2. London = 08 - 13
        3. New York = 13 - 22
        4. Note: No overlap. Is from hour = 00 to hour < 08 and so on
        5. 22 to 00 will be the last final one. ( Please check 22 to the next 01 in case day light saving changed this will no occur any problem)
      2. Calculate the mean data within this time zone for the past (400 sample size)
        1. For example London = 08-13. The indicator scan all the way back to past 400 history within 08-13 hours to find out the mean value.
        2. Then SD (using the same 2 up and 2 down SD setting as above) is calculted around the mean and each indicator data
      3. Similarly, current mean and SD will not calculate but copy forward from the last bar
      4. Note: must robust usable in forex and non-forex market
    3. Based on reset timeframe 
      1. Same as VWAP reset time = Daily, week, month, quater, year
      2. Mean line is just normal average with respect to the indicator data
      3. SD based on mean to the indicator data with 2.0 SD on top and bottom (follow the SD settings on 1)
      4. No need button, just allow to set the reset Time on the settings
      5. A verticle line in the indicator is drawn to show the place where it reset the time

    When the indicator is outside of the standard deviation band, a (white) dot will be marked on the indicator as well as the price chart.

    Note: Some time the market is new to the broker and only have limited number of candle. In backtesting as well, the max candles i believe is 999. Hence in case insufficient data, it will take whatever posible

    Note: When current price break toward outside of SD bands, an alert (Option = ) will 1.  pop out, or just 2.  play sound with textin the expert tab, or 3.  just in the expert tab or 4.  totally do nothing (Default = OFF).


    Save the data

    1. Can store the value into excel for further analysis.
      1. Having the setting to export the data out and store in CSV. The indicator value for the past  500 candles will be first store. The CSV will continue append the latest data every new data. The required data are:

        1. Symbol
        2. Broker time
        3. Local Time
        4. High price
        5. Low price
        6. Close price
        7. Indicator calculated data
        8. Mean
        9. Standard deviation
        10. Outside SD? (TRUE/FALSE)

    When the  export setting is true, create a "Debugging" Yellow text at the top right of the chart so I know the CSV is collecting.

    The file name is following the format: custom_name ( Default=PI_Indi) + Indicator calc mode+ broker short name + symbol + date (year.month.day)


    Expected input in the settings

    Indicator settings--------------------------

    Calculation mode

    1. Open to High Low
    2. Current ATR
    3. Moving Average to High Low

    MA type = EMA

    MA period = 2

    Price = Typical

    Peak capture settings--------------------------

    Peak capture mode

    1. Standard deviation (SD - rolling)
    2. Time zone
    3. Timeframe reset period

    Standard deviation settings--------------------------

    Mean period = 400

    SD up = 2.0

    SD down = 2.0

    Filter outlier = true

    Outlier SD = 2.698

    Time zone settings--------------------------

    Time zone 1 = 00

    Time zone 2 = 08

    Time zone 3 = 13

    Time zone 4 = 22

    Timeframe settings--------------------------

    Timeframe = Daily / Weekly / Monthly / Quaterly/ Yearly

    Custom Design settings--------------------------

    Dot -- ??? Anything?

    Export settings--------------------------

    Export = False


    Note: A 0 level line is needed.

    Note: The indicator must able to run in backtesting

    Source code is needed by the end of the project.


    ===================================================================================================


    Things that I want to improve

    1. Adaptive Peak Capture algorithm
      1. I need an algorithm that can automatically detect if the current price is a spikes (abnormality) or not. See the Picture below, the one that been circled is the peak that I want to capture


      2. I do not want reprint result.
      3. I do not want static value (NOT ABOVE/BELOW XX NUMBER). I want the algorithm able to capture that peak robustly. Because the indicator value can some time range big some time small. So the algorithm have to adapt to the indicator value.
      4. When measured to have a peak, highlight it with rectangular object.
        1. At TOP = clrMaroon
        2. At Bottom = clrDarkGreen
        3. Draw a vertical Grey Line at the peak (Default = true)

    2. Can use for EA as custom indicator with fast calculation
      1. The current problem is after the EA done using it strategy tester, when I open the chart the indicator will not print the value. Hence, I would like to have the indicator to always display all the result (just like MACD). See the example below, the past PPO indicator is missing when I open the chart, while conventional indicator like stochastic still there.


      2. The past version always take too much computational resource from me and slow down my Backtesting speed. Please keep the indicator calculation optimum by only update the latest candlestick only when there is new tick price. AGAIN, I DONT WANT THE PEAK ALGORITHM TO RECALCULATE AGAIN (NO REPRINT).

    3. Can use at any market which include (forex, gold, WTI, SnP500)
      1. I would like to standardise the value displayed by this indicator. Currently, forex pair will give very small number, Gold will give 100X larger number than forex. This give me intuitively hard to understand.
      2. I want to standardise the value into standard deviation, SD away from ZERO
        1. Sample size = 400 (INPUT). 
          1. Put a vertical grey line at 400th candle so that I know where is the sample size stop.
          2. I can adjust the vertical line (dragging left or right) to change the sample size
        2. So the max and min is +-3 and the indicator value will oscillate around 0 (mean indicator value). 
        3. Put level label for 0, 1, 2, 3 for easier visualisation.
      3. Put a histogram at the right side of the indicator window to ease my visualisation. Have setting so i can adjust the size of histogram box.
      4. However, the previous SD calculation is very slow. Some user who dont have enough data will not able to use it. 
        1. Hence make it auto adjust, If the user don't have enough XX amount of sample use whatever available.
        2. If ( Display Histogram == True) display a histogram at the right side of the indicator window. So when I scroll my chart left to right, the histogram will still there.
          1. Bin size = 0.1
          2. Min Max = +- 3
      5. I want to test run the speed. Other than PPO calculation. We use ATR with period of 1 to replace the PPO value. 
        1. If close >= open (bull candle) ATR value is +ve
        2. If close < open (bull candle) ATR value is -ve
        3. Standard deviation calculation will all same as PPO above.
      6. I f you have any better idea that can speed up the calculation while giving similar intuitive  visualisation, I will choose you.

    4. Can store the value into excel for further analysis.
      1. Having the setting to export the data out and store in CSV. The indicator value for the past   YY (default = 10) days will be first store. The CSV will continue append the latest data every 30sec (Default & changeable) The required data are:

        1. Symbol
        2. Broker time
        3. Local Time
        4. High price
        5. Low price
        6. Close price
        7. PPO / ATR
        8. Standard deviation of (7)
        9. Peak? (TRUE/FALSE)

    When the export setting is true, create a "Debugging" Yellow text at the top right of the chart so I know the CSV is collecting.

    The file name is following the format: custom_name ( Default=PPOIndi) + PPO/ATR + broker short name + symbol + date (year.month.day)


    Summary

    1. Make PPO and ATR (changeable setting) indicator value
    2. Standardise the value by calculating the  standard deviation, SD away from ZERO
    3. Display the histogram at the right of the indicator window. Having vertical line for me to drag left and right to change the sample size.
    4. Adaptive peak capturing
    5. Test if it can use for EA and still display result in backtester
    6. Allow the indicator values to export data out in CSV.


    Highly welcome developer that is communicative and experience in MQL indicator. Please communicate with me on your experience so I know if you are suitable in working with this project or not.

    I am open for discussion to make this indicator.

    Source code is needed by the end of the project.



































































































































































































































































    応答済み

    1
    開発者 1
    評価
    (115)
    プロジェクト
    129
    18%
    仲裁
    11
    27% / 55%
    期限切れ
    4
    3%
    2
    開発者 2
    評価
    (71)
    プロジェクト
    97
    43%
    仲裁
    2
    50% / 0%
    期限切れ
    2
    2%
    3
    開発者 3
    評価
    (43)
    プロジェクト
    90
    13%
    仲裁
    34
    26% / 56%
    期限切れ
    37
    41%
    仕事中
    類似した注文
    I am looking for an experienced developer who can create a MetaTrader 5 (MT5) Expert Advisor (EA) based on a single TradingView indicator and a set of Buy/Sell conditions that I will personally share with you. Requirements: Convert the TradingView indicator (Pine Script) logic to a working MT5 EA Implement specific Buy and Sell conditions (I will provide exact rules) EA must include basic risk management options (Lot
    I need a clean, simple EA for MT5 that consistently produces ~5% monthly return with moderate trade frequency (6–12 trades/week). - Must auto-compound or use risk-based lot sizing - Must include .mq5 source file , not just .ex5 - Must show backtest proof on 2 different pairs , preferably M30/H1 - Must be original or legally yours to transfer, this will be used in a broader structured trading setup I’m building I
    To develop EA algo on GBPUSD on MT5 Client will provide the necessary indicator which will plot Daily pivots on the chart. PFA screenshot attached for details of job work
    Description de la stratégie de trading : Bot de trading ULTIMATE AI Smart Money Concept (SMC) Aperçu: J'ai besoin du robot de trading IA ultime, conçu pour mettre en œuvre une stratégie de trading Smart Money Concept (SMC) axée sur l'identification des configurations de trading à forte probabilité en fonction de la structure du marché, des blocs d'ordres et de l'évolution des prix. Ce robot vise à capitaliser sur le
    I need a highly disciplined, low-risk EA for MT4/MT5 that trades only when 100% strategy conditions are met. It must include multi-timeframe trend logic, support/resistance rejection, BOS/CHoCH detection from real swing levels, and a breakout strategy with trailing SL. EA should scan all major pairs (from one chart), trade only during 07:00–16:00 GMT, and skip trades 2 hours before major news. Max 1 trade per pair
    I am looking for a MetaTrader 4 (MT4) developer to create a scalping-based Expert Advisor (EA) for the US30 index. The EA will be based on pending orders with trend filtering and equity-based risk management. It should include virtual SL/TP, support multiple pending orders, and be optimized for high-volatility sessions. Only experienced developers with proven MT4 EA development should apply
    Hi, I’m looking for an experienced MQL5 developer to replicate an Expert Advisor I currently use for Forex. I don’t have the source code, but I do have all the input settings, behavior structure, and detailed backtesting of how the system should operate. ✅ Basic features the EA should include: Entry logic based on simple technical indicators (e.g., moving average). Take Profit and Stop Loss system using ratios (e.g
    I want you to build an Expert Advisor (EA) that mirrors trades between two accounts in opposite directions , maintaining identical TP and SL distances in pips with adjustable lot sizes. The EA logic is as follows: ✅ Core Requirements • EA monitors trades opened on Account A . • When a trade is opened on Account A: • An opposite direction trade is opened on Account B . • The TP and SL distances (in pips) are
    Required Developer 50 - 250 USD
    I have mt4 source code for US30 pair. The issue is that it works on demo account very well but not on Real account. I want to solution for this issue
    Seeking Skilled MQL4/MQL5 Developer for Hedging & Scalping EA looking for a talented MT4/MT5 coder with a passion for building high-performance Expert Advisors? We’re looking for a freelancer to develop a custom EA that incorporates: ✅ Hedging capabilities (must be compatible with brokers that allow hedging) ✅ Scalping strategies focused on fast market movements and low timeframes ✅ Low-latency execution logic ✅

    プロジェクト情報

    予算
    50 - 100 USD
    開発者用
    45 - 90 USD
    締め切り
    最低 3 最高 10 日