Orchard Forex
Orchard Forex
  • 294
  • 1 709 933
Grid trader 10.1 - adding RSI range restrictions
Following the last 2 videos which used manually set price ranges and trend indicator values to limit trades this video shows the code to use limits based on oscillator type indicators. The indicator used here is RSI but it is easy to adapt.
This video starts with the code from part 10.
If you have come into this video without the earlier code you don't need to see every video in the series to get to the starting point. Some go off into branches, Here is a list to follow to get to the starting code used in this video.
Part 1 - Basic grid code: ua-cam.com/video/ocPh_tUnzUw/v-deo.html
Part 2 - Add compatibility for MT4: ua-cam.com/video/ibxXt1bIZMc/v-deo.html
Part 4 - Improve code to remove conditional blocks on buy/sell: ua-cam.com/video/iaPAjig-oSY/v-deo.html
Part 9 - Limit trades based on a price range: ua-cam.com/video/lEtf8oblpF4/v-deo.html
Part 10 - Limit trades based on trend indicator values: ua-cam.com/video/-ipJblDD7GA/v-deo.html
Links:
Playlist for the series: studio.ua-cam.com/users/playlistPL0iqkWGt8zzlxmb2i5Afoc_BEurr3Qa9g/edit
Join the discord group
orchardforex.com/discord
Looking for a broker? Support the channel by using this link. We receive a commission on your trades from the broker at no cost to you:
orchardforex.com/live-account
If you would like more information on the prop account I referenced (I do get an affiliate fee for any new subscriptions)
xrading incubator accounts: xrading.com/orchard-forex/
and the code is here
github: github.com/OrchardForexTutorials/2024_grid_trading_series
00:00 - Introduction
01:46 - Creating a new version
02:21 - Input statements
03:48 - Configuration includes
04:01 - Add RSI indicator to main
05:47 - Range check
07:45 - Testing
10:08 - Conclusion
Переглядів: 626

Відео

Grid trading part 10 - trend indicator range
Переглядів 559День тому
Following the last video which used manually set price ranges to limit trades this video shows the code to use ranges based on trend type indicators. The indicator used here is moving average but it is easy to adapt. The second part updates the code for compatibility with MT4 and MT5 If you have come into this video without the earlier code you don't need to see every video in the series to get...
Grid trading part 9 - manual range limits
Переглядів 604День тому
This variation introduces manually set ranges to the grid trader to avoid buying or selling at the top and bottom of the market. I also take the opportunity to make some general code improvements. If you have come into this video without the earlier code you don't need to see every video in the series to get to the starting point. Some go off into branches, Here is a list to follow to get to th...
Grid trading part 8 - profit by symbol and magic
Переглядів 56614 днів тому
Finishing the variations on a grid trader that closes all trades on profit targets. With this code the profit is tracked for this expert only and ignores any other trading If you have come into this video without the earlier code you don't need to see every video in the series to get to the starting point. Some go off into branches, Here is a list to follow to get to the starting code used in t...
Grid Trading part 7 - Saving equity
Переглядів 67614 днів тому
The last update to the grid trader added closing all trades on equity targets. This requires storing the starting equity which can be a problem if the terminal must be restarted. This video shows using gloabl variables to store the starting equity. There is also a situation where you may be running other experts or manually trading on the account and then just comparing equity movement is not s...
Grid Trader 6 - Equity Close
Переглядів 82321 день тому
This update is based on a suggestion to set equity profit targets and close all trades when the target is met. The result can reduce the total amount and time that trades are held open and save on swap but I can't determine if this offsets the reduced profit. Links: Playlist for the series: studio.ua-cam.com/users/playlistPL0iqkWGt8zzlxmb2i5Afoc_BEurr3Qa9g/edit Looking for a broker? Support the...
Grid trading part 5 - TPSL
Переглядів 859Місяць тому
This is a quick update for a suggestion to add take profit and stop loss. I think this is not the essence of grid trading, possibly the suggestion was more nuanced but without more detail this is all I have to work with. Next video has an interesting approach, I haven't tried it yet so subscribe to know when it comes out. Links: Playlist for the series: studio.ua-cam.com/users/playlistPL0iqkWGt...
Grid Trading 4: Code improvement
Переглядів 705Місяць тому
Another update with no improvement to the grid. In the base version I have a number of blocks of code separated with conditions based on buy or sell. I did this because I thought it would be easier to follow but generally I consider this to be very bad code so today I'm replacing it before moving on to the next strategy suggestion. Links: Playlist for the series: studio.ua-cam.com/users/playlis...
Grid trading 3 - filter on timeframe movement
Переглядів 1,2 тис.Місяць тому
This is an update based on a suggestion in the comments to the first video. "enter in the direction of other timeframe" I haven't done exactly as suggested because it didn't quite fit with grid trading but I have implemented an adaptation. Links: Looking for a broker? Support the channel by using this link. We receive a commission on your trades from the broker at no cost to you: orchardforex.c...
Community Grid Trader part 2 - MQL4
Переглядів 913Місяць тому
This is just an update to part 1 where I make the code compatible with both MQL5 and MQL4 to allow for the many MT4 users and in case anyone is interested in an account with xrading.com I also reply to one of the suggested improvements, a good suggestion but not really suitable for programming modifications. Looking for a broker? Support the channel by using this link. We receive a commission o...
Community input grid trader expert
Переглядів 2,1 тис.Місяць тому
As something of an experiment I want to see if community input can improve a simple grid trader. Part 1 just builds the basic trader and I can show where there is a problem with standard grid trading. Leave comments with reasonable suggestions for improvement that I can incorporate into later videos. The next part will just make this MT4 compatible and some code improvement before later parts w...
Use the MT5 editor for debugging
Переглядів 8762 місяці тому
A quick explanation of how to set up and run code inside the editor for debugging. Works well with MT5 but the features are not fully available with MT4. Looking for a broker? Support the channel by using this link. We receive a commission on your trades from the broker at no cost to you: orchardforex.com/live-account
Sorting with CList
Переглядів 8142 місяці тому
Using the Clist class suplied in Arrays\List.mqh with MT4 and MT5 to sort lists of objects. This code is written for MT5 and there is some MT5 specific code in the example script but the concepts and techniques to use CList are the same for MT4 Looking for a broker? Support the channel by using this link. We receive a commission on your trades from the broker at no cost to you: orchardforex.com...
How to Code an Expert Advisor Using an Indicator - Simple RSI Overbought - for MT5
Переглядів 3,3 тис.10 місяців тому
If you haven't seen it, I have a recent series where I slowly built up an expert using a breakout strategy. The breakout doesn't use any indicators so I'm following up with videos that use indicators in the EA. THIS VIDEO IS FOR MT5. SEE BELOW FOR A LINK TO THE MT4 VIDEO There is enough difference in the MT4/5 code that I decided to release separate videos. This is a coding demonstration, not a...
How to Code an Expert Advisor Using an Indicator - Simple RSI Overbought - for MT4
Переглядів 1,9 тис.10 місяців тому
If you haven't seen it, I have a recent series where I slowly built up an expert using a breakout strategy. The breakout doesn't use any indicators so I'm following up with videos that use indicators in the EA. THIS VIDEO IS FOR MT4. SEE BELOW FOR A LINK TO THE MT5 VIDEO There is enough difference in the MT4/5 code that I decided to release separate videos. This is a coding demonstration, not a...
Triple Supertrend Strategy Test
Переглядів 3,6 тис.11 місяців тому
Triple Supertrend Strategy Test
Using an indicator to set chart background colour
Переглядів 1,2 тис.11 місяців тому
Using an indicator to set chart background colour
See this BEFORE you optimize in Metatrader
Переглядів 2,5 тис.Рік тому
See this BEFORE you optimize in Metatrader
EA for Beginners, set and forget breakout, code, optimisation, testing part 8/8
Переглядів 4,6 тис.Рік тому
EA for Beginners, set and forget breakout, code, optimisation, testing part 8/8
EA for Beginners, set and forget breakout, code, optimisation, testing part 7/8
Переглядів 3,2 тис.Рік тому
EA for Beginners, set and forget breakout, code, optimisation, testing part 7/8
EA for Beginners, set and forget breakout, code, optimisation, testing part 6/8
Переглядів 3,8 тис.Рік тому
EA for Beginners, set and forget breakout, code, optimisation, testing part 6/8
EA for Beginners, set and forget breakout, code, optimisation, testing part 5/8
Переглядів 3,8 тис.Рік тому
EA for Beginners, set and forget breakout, code, optimisation, testing part 5/8
EA for Beginners, set and forget breakout, code, optimisation, testing part 4/8
Переглядів 3,9 тис.Рік тому
EA for Beginners, set and forget breakout, code, optimisation, testing part 4/8
EA for Beginners, set and forget breakout, code, optimisation, testing part 3/8
Переглядів 3,8 тис.Рік тому
EA for Beginners, set and forget breakout, code, optimisation, testing part 3/8
EA for Beginners, set and forget breakout, code, optimisation, testing part 2/8
Переглядів 4,4 тис.Рік тому
EA for Beginners, set and forget breakout, code, optimisation, testing part 2/8
EA for Beginners, set and forget breakout, code, optimisation, testing part 1/8
Переглядів 10 тис.Рік тому
EA for Beginners, set and forget breakout, code, optimisation, testing part 1/8
Laguerre RSI Scalper Test - Double your account overnight? Maybe not.
Переглядів 3,7 тис.Рік тому
Laguerre RSI Scalper Test - Double your account overnight? Maybe not.
Basic Metatrader Debugging
Переглядів 3 тис.Рік тому
Basic Metatrader Debugging
Things you need to know about using encryption in Metatrader programming
Переглядів 1,5 тис.Рік тому
Things you need to know about using encryption in Metatrader programming
MT4 Expert Code - RSI Moving Average Cross
Переглядів 2,8 тис.Рік тому
MT4 Expert Code - RSI Moving Average Cross

КОМЕНТАРІ

  • @michasz4861
    @michasz4861 2 дні тому

    Thank you so much for your work, it's great to see the process of creating EA. Inspiring.

  • @s36ast1an
    @s36ast1an 2 дні тому

    Maybe you would like to check the possibilities of self-adaptive EAs. It's a simple matter. I can share with you code. For example, the signal after the intersection of two MAs, but the parameters of these two MAs are automatically calculated in the Walk-Forward cycle, but inside the EA. Everything is contained in a few lines of code, and the two main functions are virtual trading and optimization (it can be also be brutte force) interesting results :D

    • @michasz4861
      @michasz4861 2 дні тому

      Very interesting approach but are the results satisfactory ? Share the EA code for testing if it's not a problem.

  • @sophonkururat4636
    @sophonkururat4636 2 дні тому

    for version of MT4 can' work how to do for this? After compiler program MT4 have error of " 'GetData' - function must have a body "

  • @oscartovar1246
    @oscartovar1246 2 дні тому

    TKS VERY COMPLETE AND IT WORKING

  • @stephenkafeero1395
    @stephenkafeero1395 3 дні тому

    Being a novice in coding, this video is so well made that I managed to follow the instructions to the end and compiled it successfully. Unfortunately, When I attach it to the chart the EA does not close the orders when the stop loss is hit. What am I doing wrong? Thank you.

  • @TheWhippinpost
    @TheWhippinpost 3 дні тому

    How about setting the grid buy or sell distance to trigger at a percentage of ADR (or ATR, whichever)? That way trades can be spaced more dynamically according to an average day's volatility. So, for instance, one could set a grid distance at 10% of ADR (10-trades). And then, perhaps, calculate lot-size based on risk, spread over the ADR. So, if a user chose to risk 1% across the ADR, the EA could enter 10 trades with a lot-size 1/10th of the total risk per trade. Hope that makes sense.

  • @crownpaint5990
    @crownpaint5990 3 дні тому

    Thanks for ur great work. I think adding trailing TP and SL, two sects of indicators for entry signal and trend filter will make it great

  • @DestoTrading
    @DestoTrading 4 дні тому

    Suggestion: try reversing the RSI signal, meaning that a Buy signal would be price > RSI level (60 for example).

  • @a.porteghali7402
    @a.porteghali7402 5 днів тому

    Im still struggling with Risk Management, to find an optimal approach to avoid a critical draw-down. In some scenarios, in the strategy tester, I have been stopped out, while everything seemed to be on right track. The style of your programming is great and informative. It also helped me to improve some of my C++ coding skills. Thanks a lot.

  • @deddyhermanus6980
    @deddyhermanus6980 5 днів тому

    I am liking this kind of content very much. Its more easier to digest. :)

  • @netAndy
    @netAndy 7 днів тому

    Thank you for your generous sharing. Is it possible to add an input variable when reaches a certain profit (for example, $100), close all positions and continue to execute the EA Is this how we can avoid accumulating too many counter-trend positions in the wrong direction...

    • @OrchardForex
      @OrchardForex 6 днів тому

      I covered that in parts 7 and 8 ua-cam.com/video/2S-ojdvAncs/v-deo.html ua-cam.com/video/fpmBw0AD4-0/v-deo.html

  • @ethanraiden
    @ethanraiden 7 днів тому

    Hi loving to see you back posting regularly, and enjoying the series. I had a suggestion about the grid size. Instead of using a static predefined grid size, would it be possible to make it dynamic based on current volatility? Perhaps using an ATR indicator to identify high and low volatility times and expanding the grid at higher volatility periods and contacting it in low volatility. Or in the place of using an indicator, do it based on time? i.e. Narrowing the grid during asian market open times and expanding it during the US, EU crossover times?

    • @OrchardForex
      @OrchardForex 6 днів тому

      I have a suggestion on the list already to vary grid size. I'll add in these ideas and do a branch on that soon.

  • @s36ast1an
    @s36ast1an 8 днів тому

    1. To evaluate a given solution, it is worth creating an indicator, e.g. profit * 1/AbsoluteDD * 1/MaxDD, in this case we want a large profit and the smallest DD possible. Of course, you can come up with another indicator, as long as it reflects your needs for the so-called "optimal solution" 2. Now is, if price is less than low then still buying, and if price is greater than high still selling. Maybe change to trade inside range -> buy if below high && above low, sell if above low && below high. 3. Try option with inverse trading: sell if price is above high and buy if price is below price (something like oversold / overbought) this is simple change. 4. Try lot size based on fixed risk percent of minimum one of balance, equity, free margin.

    • @OrchardForex
      @OrchardForex 6 днів тому

      Currently I rank into 2 groups, drawdown < or > 1000, then by profit. It's simple. I can update this branch with rahge top and bottom, but I'm about to move onto a different branch of suggestions so it will have to wait. Your suggestion 2 is what is happening now, sell if above a number and buy if below. There is nothing in the code preventing the sell number from being above the buy number. I will add in the suggestion to set size based on percentage, probably of equity.

  • @Artosf
    @Artosf 9 днів тому

    will it work if it's changed to TP instead of SL?

    • @OrchardForex
      @OrchardForex 6 днів тому

      Yes, you just have to change calculations from loss to profit.

  • @dayjanira2600
    @dayjanira2600 10 днів тому

    Hello sir as these. Thank you very much for your contents are very top. You could make a video by converting the Indicator Tradingviwer's Delta volume [hapharmônico] for MT4. Please.

    • @OrchardForex
      @OrchardForex 6 днів тому

      I rarely make videos requiring conversion of tradingview indicators. It's more work than the video is worth.

  • @donbangert
    @donbangert 10 днів тому

    Perhaps Keltner Channels on a higher timeframe would give you a bit more room?

    • @totati
      @totati 10 днів тому

      I agree with you. I have a trend-following strategy that shows that the Keltner channel allows more space, so it filters out false signals well.

    • @OrchardForex
      @OrchardForex 9 днів тому

      I don't understand why more room would be needed. If you just want to raise and lower the high and low limits there are many ways to do that. Timeframes are irrelevant, I could be runnig the grid trader on a monthly chart with the same results.

    • @donbangert
      @donbangert 9 днів тому

      @@OrchardForex As I'm sure you know, Keltner is based on ATR. ATR on a 5-minute chart is vastly different than ATR on a daily chart. And since it's volatility based, it may more closely size to the current range. With a little back testing, the ATR multiplier could be found.

    • @OrchardForex
      @OrchardForex 8 днів тому

      @@donbangert I did not mean that keltner does not change with timeframe but when you said higher timeframe I assume that means higher than the running chart and that could be anything. Maybe you mean just a high timeframe like D1 or W1. That will change the high and low as would using many other indicator types. I used H1 in the video because it shows up well on the visual. Changing to Keltner and testing different values is something I can do later but I want to mvoe on now to showing different concepts that I have in the pipeline.

  • @alessandroalex991
    @alessandroalex991 10 днів тому

    Unfortunately this is completely useless as you can decompile quickly. The only more valuable protection is to use obfuscated dll and put a part of the code on it..

    • @OrchardForex
      @OrchardForex 6 днів тому

      I would be interested to see an example of recent code (post build 600) being decompiled

  • @johnskinner3145
    @johnskinner3145 10 днів тому

    Thanks Arthur, Another one that I enjoyed, especially the inclusion of the MT4 code. After watching the video I went through the include\indicators directory looking at Trend.mqh and Oscillators.mqh. Can you believe I never new these files existed before. Talk about not seeing the forest for the trees. Thanks again.

    • @OrchardForex
      @OrchardForex 9 днів тому

      I'm glad you're getting value from these.

  • @SeanSheraton
    @SeanSheraton 11 днів тому

    No trades are being taken. Not sure what the problem might be.

    • @OrchardForex
      @OrchardForex 10 днів тому

      There is a bug that I found and fixed in the video where it was defaulting to trading direction none but the fix didn't make it to github. It's checked in now.

  • @hakillrggames4063
    @hakillrggames4063 11 днів тому

    Please, I can't put it on MT4, could you explain? Do the REAME AND LICENSE files need to be placed in some folder? thank you and congratulations for the channel

    • @OrchardForex
      @OrchardForex 6 днів тому

      Those files are just documentation. Put experts files in the experts folder, include files in the include folder, and so on.

  • @greatdavidfx7236
    @greatdavidfx7236 11 днів тому

    Nice work always. Please do you have the currently valid url for downloading news feed from forex factory from mql4? Thanks boss

    • @OrchardForex
      @OrchardForex 10 днів тому

      I haven't checked but it should be the same as when I made the video. You can follow the steps I used in the video to get the link from the web page.

    • @greatdavidfx7236
      @greatdavidfx7236 6 днів тому

      Ok. Thanks

    • @greatdavidfx7236
      @greatdavidfx7236 5 днів тому

      Sir, i tracked the error and it reported error 4060 and I didn't use webrequest from indicator. I created mqh file for the class and I called the download function from OnTick, so I don't know he's giving error 4060

    • @greatdavidfx7236
      @greatdavidfx7236 5 днів тому

      I don't know why it's giving error 4060

    • @OrchardForex
      @OrchardForex 4 дні тому

      @@greatdavidfx7236 Have you checked that the url is not blocked in terminal settings

  • @harryleib4303
    @harryleib4303 12 днів тому

    hey Orchard. i dont get any SL when i enter a trade. all the code is correct, and i put it in the correct place. Any idea please?

    • @OrchardForex
      @OrchardForex 6 днів тому

      Look for errors in the log. Is autotrading enabled?

  • @anupmistry123
    @anupmistry123 12 днів тому

    Thanks mate very good video and coding.

  • @DG10-youtube-channel
    @DG10-youtube-channel 12 днів тому

    Thanks a lot. Question: if a strategy tested is very unprofitable would you consider the same strategy inverting the signal? Buy vs sell and vice versa

    • @OrchardForex
      @OrchardForex 6 днів тому

      It is very popular to assume that just inverting logic will make a losing strategy profitable but usually that doesn't work. However, I still do it from time to time if I think it might be possible.

  • @DIYBeezen
    @DIYBeezen 13 днів тому

    Nice Work. But Version 2.01 isnt working for me. No trades. And Version 2.000 is working but why do you delete the option to close all trades at a specific Equity Goal? Version 2.0 with Multisymbol and the option to close all trades at a target would be perfect. That means lower DD and lower Deposit Load.

    • @OrchardForex
      @OrchardForex 10 днів тому

      1. There was a problem with the github check in. One of the bugs I found in the video and fixed didn't make it to git and the expert defaults to no trades. It's fixed now. 2. This is the basis of the series, to try suggestions in the search for the holy grail of grid trading. It isn't to keep building each new concept on top of others. But you already have the version with equity targets.

  • @greatdavidfx7236
    @greatdavidfx7236 13 днів тому

    Thank you. I strongly believe that God is allowing the perceived trouble coming for Duro Sanya in order to hide him from potential danger that is coming to him. God has a way. You face the consequences of your actions yet He will still glorify His name in your life and situation. Despite going through hardship and troubles you will still see God in your situation. My humble opinion though.

  • @Kandy_Ltd
    @Kandy_Ltd 13 днів тому

    From your video "Load economic calendar in metatrader" will I be able to use the same code in the strategy tester? Except for the download part that is

  • @DG10-youtube-channel
    @DG10-youtube-channel 13 днів тому

    Hi there, do you have any videos showing how to make a indicator that gets prices from another symbol? There is a complication in the case of the diferent symbol not having prices in the same exact market hours of the main symbol in the window

    • @OrchardForex
      @OrchardForex 6 днів тому

      I have a video somewhere showing getting data from a different timeframe, that could be easily modified to get data from a different symbol. If the other market is closed there is nothing you can do about that, the times will be the same for all symbols.

  • @topskurk
    @topskurk 13 днів тому

    rather then use the Trade direction in points, why not use it as percentage based on current price? so each gap will be different from the other and not the exact same size?

    • @OrchardForex
      @OrchardForex 10 днів тому

      I can try that in a future video.

  • @junglemandude
    @junglemandude 13 днів тому

    Great work and great explaination, very easy to follow

  • @safiyamurray9050
    @safiyamurray9050 13 днів тому

    Your content is exceptional! Thank you for your work and dedication

  • @xilabsVN
    @xilabsVN 14 днів тому

    Thanks so much Sir, Nextlot should use Martingale, I think it will make the new round faster ?

  • @s36ast1an
    @s36ast1an 15 днів тому

    Instead of absolute values ​​($2, $10), use the relative value of % equity growth

  • @johnskinner3145
    @johnskinner3145 15 днів тому

    Hi, Are you no longer coding for MT4 compatibility?

    • @OrchardForex
      @OrchardForex 6 днів тому

      I missed updating on a couple of videos, mostly what is here already works with MT4. The problem is that it can make the code complex to handle both and I'm leaning more to making separate videos for MT5 and MT4.

  • @torpedo0101
    @torpedo0101 15 днів тому

    I did something very similar but using OnTradeTransaction() in my expert and then interrogating each transaction with MqlTradeTransaction. Interesting to see a different approach.

  • @totati
    @totati 16 днів тому

    Thank you again! Do you plan to make this modification in the MT4 version as well? And the modified IsTradeAllowed() function (from version 1.006) does not work in MT4 because of "Override system function" error.

    • @OrchardForex
      @OrchardForex 6 днів тому

      I did address that specific error in a later video, part 10, but all you have to do is remove the function or wrap it in #ifdef __MQL5__

  • @donbangert
    @donbangert 16 днів тому

    I created a custom equity indicator that I use on MT4 and this code will help to convert it to use on MT5. Thanks!

  • @geha9999
    @geha9999 16 днів тому

    hi Arthur, thank you for your great method on MQ5 coding that bring this EA as a sample for us... well done 👍👍 but I wonder to one feature to be aligned with your coding method in this EA, so apologize if I need to ask you a favor,... please add a trailing feature that perhaps can give the EA a better or optimized result? Thank you again Sir

  • @momomadi2
    @momomadi2 16 днів тому

    nice - thanks

  • @maciha7938
    @maciha7938 17 днів тому

    the best word for this video is "Thanks"❤❤❤❤❤❤❤❤

  • @greatdavidfx7236
    @greatdavidfx7236 17 днів тому

    Thank you for this video. But it's like the csv download link no longer works. Can you please suggest solutions, alternatives or any other video you have that has solved this problem. Thanks boss

  • @koruuuuuuu
    @koruuuuuuu 18 днів тому

    Just thanks !

  • @Ama_Teur
    @Ama_Teur 18 днів тому

    so finally you back into ILAN = martin gaile ))

  • @rodneyvinen1594
    @rodneyvinen1594 19 днів тому

    Thank you for your videos. Over the years, you have covered some very important MQL concepts. You have lovely coding skills, and you are very logical and well-organized. I'm looking forward to the next iteration of the code, as what you intend to do is tricky, considering EA restarts and how brokers name symbols inconsistently in the market watch area. Another thing you may want to consider for a multi-symbol EA is an overall profit basket (perhaps). It would be nice to see how you code the use of the GlobalVariableSetOnCondition function as a semaphore at some point in the future.

  • @ipelengmekgwe834
    @ipelengmekgwe834 19 днів тому

    Thank you for this series. I think instead of equity profit as an improvement, I suggest we look at the equity vs balance gap set as an input (e.g. 50), and if greater or equal to the set amount only close the losing trades.

  • @ipelengmekgwe834
    @ipelengmekgwe834 20 днів тому

    Thank you for this series. I think instead of equity profit as an improvement, I suggest we look at the equity vs balance gap set as an input (e.g. 50), and if greater or equal to the set amount only close the losing trades.

  • @rolandb1743
    @rolandb1743 20 днів тому

    I expected CBase *base = NewSub1(); and overriding works like in java, but it seems it does not!?

  • @johnskinner3145
    @johnskinner3145 20 днів тому

    Hi Arthur, No doubt this is just one of those things that slips through the cracks from time to time. IsTradeAllowed() is a system function in MT4 and errors on compilation.

  • @michellewilbur2576
    @michellewilbur2576 22 дні тому

    Are you able to forward push notifications from an indicator to Telegram? I have been unable to find a utility that can do that. Thank you for your help.

  • @lucalucato5806
    @lucalucato5806 22 дні тому

    Hi Orchad, i follow you since 2 years and also on discord and i thank u for all your work they are amazing! For this strategy maybe whe can insert i time filter for close all the trades for reducing cost for overnight trades; maybe set a target daily profit and working on it maybe change the type of order to buy/sell stop/limit and manage them with OCO strategy we know that all the trades will close in profit so it is possible to think in that way