Jump to content

⤴️-Paid Ad- Check advertising disclaimer here. Add your banner here.🔥

trader04

Members
  • Posts

    93
  • Joined

  • Last visited

Everything posted by trader04

  1. @Minigems please
  2. @Minigems please
  3. U can share it
  4. Yeah you're Right, sorry @Simion_Aretz
  5. Are You blind? It's here
  6. @kimsam please 🙏 can u check it
  7. @N9Tcan u help us please with these indi
  8. Trading123 is a pack, in this pack u can find this cloud. If its done u can share please thanks for ur help
  9. @N9T ok man, i only want to help.
  10. I ask chat gpt a diagnostic, @N9Ti hope that works 🧠 TYPICAL CASE: “Displays but never trades” When everything displays correctly, it means: ✅ OnBarUpdate() is running ✅ Conditions are being evaluated ❌ The execution path to EnterLong() / EnterShort() is NEVER reached There are 4 possible internal errors. I’ll list them in order of probability, with the exact fix. 🔴 PROBLEM 1 (MOST COMMON) A return; condition stops execution BEFORE the order Very common example: if (!IsRealtime) return; Or: if (State != State.Realtime) return; ➡️ Result: Backtest ❌ SIM ❌ Live ❌ BUT display works fine ✅ ✅ FIX Temporarily remove or comment it out: // if (!IsRealtime) // return; 📌 Many devs add this “just for testing”… and forget it. 🔴 PROBLEM 2 The bot is unintentionally blocked by Historical Example: if (Historical) return; 👉 NinjaTrader often still considers the strategy as historical even when you see the live market. ✅ SAFE FIX Replace with: if (State != State.Realtime && State != State.Transition) return; Or remove it entirely for testing. 🔴 PROBLEM 3 A “sentinel” variable is never initialized correctly Real example: bool canTrade; Later: if (!canTrade) return; ❌ BUT canTrade is NEVER set to true ➡️ Result: zero trades forever ✅ FIX In OnStateChange(): if (State == State.Configure) { canTrade = true; } OR before entry logic: canTrade = true; 🔴 PROBLEM 4 Orders are inside a condition that is never true Sneaky example: if (Position.MarketPosition != MarketPosition.Flat) { EnterLong(); } 😅 → never executed Or: if (BarsInProgress == 1) { EnterLong(); } But you only have one timeframe. ✅ FIX Make sure: BarsInProgress == 0 OR remove the condition to test. 🧪 DEFINITIVE TEST (TO LOCATE THE BUG) 👉 Do THIS test — it’s extremely important: At the very top of OnBarUpdate(): Print("OnBarUpdate OK"); Then JUST BEFORE EnterLong(): Print("ENTRY CONDITION REACHED"); Result: ❌ You never see “ENTRY CONDITION REACHED” ➡️ logic is blocked BEFORE the order ✅ You see it but no trade ➡️ order / state issue 🔥 NEXT STEP (LET’S FINISH THIS) To help you 100%, do ONE thing: 👉 paste the OnBarUpdate() block here (even if it’s long) OR tell me: do you see IsRealtime, Historical, canTrade, return; in the code? I’ll tell you exactly which line is blocking execution and what to fix, straight to the point 💪
  11. @kimsam u can check this indi please
  12. @redux @apmoo @kimsam @N9T please ICTUnicornModel-2.zip
  13. U can shared yours please?
  14. U can share your bestorderflow if u have for education
  15. This file is cracked . At least read the caption 🙄
  16. Chek ur dm?
  17. Hey @N9T @redux u can check this Mbo BofMbo-1.dll
  18. Level 2 data is required
  19. https://dosya.co/23hfyo5s3o7e/BestOrderFlow_v8.rar.html Try this versión @N9T
  20. Normally you need to have NinjaTrader 8.1.5.2 to use it. There are two versions on this page.”
  21. Test it multiple times to see if it’s able to take several trades continuously. Usually, it only takes one trade and then it stops woworkin. @N9T

⤴️-Paid Ad- Check advertising disclaimer here. Add your banner here.🔥

×
×
  • Create New...