Jump to content

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

trader04

Members
  • Posts

    107
  • Joined

  • Last visited

Everything posted by trader04

  1. 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 💪
  2. @kimsam u can check this indi please
  3. @redux @apmoo @kimsam @N9T please ICTUnicornModel-2.zip
  4. U can shared yours please?
  5. U can share your bestorderflow if u have for education
  6. This file is cracked . At least read the caption 🙄
  7. Chek ur dm?
  8. Hey @N9T @redux u can check this Mbo BofMbo-1.dll
  9. Level 2 data is required
  10. https://dosya.co/23hfyo5s3o7e/BestOrderFlow_v8.rar.html Try this versión @N9T
  11. Normally you need to have NinjaTrader 8.1.5.2 to use it. There are two versions on this page.”
  12. 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
  13. @redux can u see it, u can chek it please🙏🙏🙏🙏🙏thanks in advance
  14. I agree but there are many update .for example in the auto entries ( comfirmation entries , Tick offset entry,) manual entries ect... @N9T
  15. @N9T i tried your version predator unfortunately its doesn't take any trade. u can try for see the issue please
  16. Bro new version is available ,just scroll🤔
  17. Seriously, mine, i tried but it’s doesn't take any trady. Can u help me please
  18. Can u update because it doesn't take any trade please @N9T @redux
  19. @N9T can you check this too @redux
  20. “No problem, we’ll wait. Thanks in advance.”

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

×
×
  • Create New...