- Search Crypto Craft
-
jblanked replied Sep 17, 2024Thanks for your insights and suggestions!! Right before the long leg up, noticed the initial trades of that set were buys. Then it switched to sells once the markets pushed down. Unfortunately, that version of the Basket can only trend switch once, ...
Grid/Basket Trading Expert Advisors
-
jblanked replied Sep 17, 2024If I'm not mistaken, that version can only switch once (from buys to sells if buys are open, and from sells to buys if sells are open). Definitely share your results and if you have any suggestions.
Grid/Basket Trading Expert Advisors
-
jblanked replied Sep 17, 2024I complete agree; forward testing (live trading) and then comparing backtest results ensures the advisor is trading as intended.
Grid/Basket Trading Expert Advisors
-
jblanked replied Sep 17, 2024This thread is about grid trading brother. For coding requests, use this thread: url
Grid/Basket Trading Expert Advisors
-
jblanked replied Sep 17, 2024I think you're speaking from your own experience, but that hasn’t been the case in mine.
Grid/Basket Trading Expert Advisors
-
jblanked replied Sep 17, 2024Thanks for sharing and joining the conversation. In my experience, incremental lots work well if you have a hedge. The trick in that scenario is determining when to hedge, which is honestly the hardest part. I’ve also experimented with some ...
Grid/Basket Trading Expert Advisors
-
jblanked replied Sep 17, 2024Yeah, I think that's how most people intend to use grid trading. As for your question, "Why not trade the trend in a conventional manner?"—grid trading allows you to potentially gain more profit if the market moves against you and then returns in ...
Grid/Basket Trading Expert Advisors
-
jblanked replied Sep 17, 2024If you can code in any other language, then yes

Free News API (Machine Learning, Live Trading, and Backtesting)
-
jblanked replied Sep 17, 2024I think what you described is mostly true if the EA keeps trading in the same direction. In almost all of those cases, you'll need to hedge or close trades in huge drawdown. The trick I found was to allow it to switch trends and grid in the other ...
Grid/Basket Trading Expert Advisors
-
jblanked replied Sep 16, 2024No thanks, this thread is about the TMA-RSI-Bands
TMA-RSI-Bands (RSI Of TMA Centered + Bands)
-
jblanked replied Sep 16, 2024Write out instructions brother; it's easier to read.
I will code your EAs and Indicators for no charge
-
jblanked replied Sep 16, 2024I've been working on a Discord alert version, but if we get enough requests for an alert version, I'd be open to coding one. You may or may not have success by following the arrows blindly, but you'll likely have more success using this alongside ...
TMA-RSI-Bands (RSI Of TMA Centered + Bands)
-
jblanked replied Sep 16, 2024That’s just a basic example of using the indicator in an expert advisor. If you want to use it, start a backtest in the strategy tester and create settings for your desired timeframe and currency pair. Understanding how to backtest efficiently and ...
TMA-CG-2024
-
jblanked replied Sep 16, 2024No worries brother, it's here: url TMA-RSI-Bands-EA is here: url
TMA-RSI-Bands (RSI Of TMA Centered + Bands)
-
jblanked replied Sep 16, 2024Unfortunately, no, because the arrows are drawn based on the lines. Please analyze what Darwati and a few others have mentioned about the best uses.
TMA-CG-2024
-
jblanked replied Sep 16, 2024Nice to formally meet you, Fred. The MT4 version has not been released yet. Once the MT5 version is complete, I will post them both in this thread: url
I will code your EAs and Indicators for no charge
-
jblanked replied Sep 16, 2024Yessir, that screenshot was from the MT4 version. It's the MT5 version that needs editing.
I will code your EAs and Indicators for no charge
-
jblanked replied Sep 15, 2024void CcsRsi() { if(Rack1_Cci > 0 && Rack2_Cci > 0 && Rack1_Rsi > 55) { OrderEntry(0); } if(Rack1_Cci < 0 && Rack2_Cci < 0 && Rack1_Rsi < 55) { OrderEntry(1); } }
Unbalanced Parenthesis
-
jblanked replied Sep 15, 2024Instead of using printf, use Print // failed Print(__FUNCTION__ + ": error initializing expert"); ExtExpert.Deinit(); return INIT_FAILED;
Unbalanced Parenthesis