Jump to content

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

All Activity

This stream auto-updates

  1. Past hour
  2. it is actually a rebrand of volumetrica, another italian software company.
  3. https://nexusfi.com/local_links.php?action=ratelink&catid=27&linkid=2720 has several modes
  4. @Ninja_On_The_Roof @misalto @N9T Please evaluate. Request you to Review and Improvise. Regards!!
  5. @apmoo @kimsam @apmoo Please evaluate. Request you to Review and Improvise. Regards!!
  6. this is new version, old version a bit different. the first thing I did go to youtube and find their stuff. thank you for always being helpful though. but I still don't know what to do with it.
  7. Signal Logic Signal Condition Long Entry Leavitt Projection crosses above Leavitt Convolution AND Convolution Slope < 0 Long Exit Convolution Slope is declining (current < previous) Short Entry (optional) Leavitt Projection crosses below Leavitt Convolution AND Slope > 0 Short Exit Convolution Slope is rising The Leavitt crossover signal is selective — it requires a specific crossover + slope condition. To test immediately: Backtest first: Right-click chart → Strategy Analyzer → run on recent data to confirm signals exist Reduce LeavittLength to 10 for more frequent signals Configurable Parameters (NQ, ES) Parameter Default Purpose Leavitt Length 20 Main linear regression period Quantity 1 Contracts/shares per trade Profit Target Ticks 0 (off) Set > 0 to enable Stop Loss Ticks 0 (off) Set > 0 to enable Recommended Scalping Settings Setting ES/MES NQ/MNQ Timeframe 1 min 1 min Leavitt Length 14–20 10–16 Profit Target 8–16 ticks 20–40 ticks Stop Loss 12–20 ticks 30–50 ticks Allow Shorts Yes Yes Instrument: ES, NQ, MES, MNQ (or any liquid futures/stocks) Timeframe: 1-minute or 2-minute bars for scalping Profit Target: 8-16 ticks (ES) or adjust per instrument Stop Loss: 12-20 ticks Trail Stop: 8-12 ticks Best Tested For NQ- Sniperbar/Ninjarenko 20-40, Leavitt Length- 40 (Other Suggestions Most Welcome) Event What Gets Printed Strategy goes live Confirmation with instrument, account, all settings Every 10th bar Bar number, time, close, projection, convolution, slope, position Entry signal LONG/SHORT with all indicator values Exit signal Direction with slope values Order filled Price, quantity, time, unrealized PnL Order rejected Error code and native error message Order cancelled Order name and time Position change New position direction, quantity, average price Strategy terminated Shutdown confirmation Leaveitt Auto.zip
  8. Today
  9. Effectivly Windows Defender detect a malware. If you want to be sure download this: https://workupload.com/file/6QGanPYZ78p In Version there is 19.0. If you have Metastock 20 insert 20.0.
  10. This is the crack: https://www.mediafire.com/file/67g34shacu4v2k2/Metastock+20+R.T.+GUI+crack.zip/file Run as administrator. In DataFeed there is Unknow; select ReuterDataLink. Push Build offlinecache. This fix the crash in system test and Explorer. The file is clean, there is no malware.
  11. i use offline data. I didn't understand how or where to do what you said.
  12. MAX PAIN addition if possible. For a candidate settlement price P: Call payoff at strike K: max⁡(0,P−K)×OI_call[K]max(0,P−K)×OI_call[K]. Put payoff at strike K: max⁡(0,K−P)×OI_put[K]max(0,K−P)×OI_put[K]. Total payout to all option holders at P: TotalPayout(P)=∑K[max⁡(0,P−K) OI_call[K]+max⁡(0,K−P) OI_put[K]]TotalPayout(P)=K∑[max(0,P−K)OI_call[K]+max(0,K−P)OI_put[K]] You want the P that minimizes the above function if the Truth Engine has per‑strike open interest and option type, For each candidate settlement price, compute total payoff to calls and puts using OI. Choose the price with minimum total payout. This is the Max Pain level. Max Pain is the strike where option writers (dealers) pay out the least at expiration, i.e., where total option holder P&L is minimized. def calc_max_pain(call_oi, put_oi): strikes = sorted(set(list(call_oi.keys()) + list(put_oi.keys()))) if not strikes: return 0.0 best_price = strikes[0] best_payout = float('inf') for p in strikes: payout = 0.0 # Calls: holders get paid when price finishes ABOVE strike for k, oi in call_oi.items(): if oi <= 0: continue intrinsic = max(0.0, p - k) payout += intrinsic * oi # Puts: holders get paid when price finishes BELOW strike for k, oi in put_oi.items(): if oi <= 0: continue intrinsic = max(0.0, k - p) payout += intrinsic * oi if payout < best_payout: best_payout = payout best_price = p return best_price
  13. Call/ Put walls or GEX 1 , GEX 2 GEX 3 and GEX 4 lines ? The Truth Engine is implemented per screen shot with “Put X @ level, Call Y @ level, FLIP, PEAK” is plotting discrete liquidity pockets (size of put/call open interest or gamma at specific strikes is it so ?), the primary gamma‑flip level, and the single strike with maximum absolute gamma (PEAK), are these the GEX 1 , 2, 3 and 4 levels ? Call Wall / Put Wall: strikes with the largest positive/negative call and put gamma exposure, aggregated across expiries. Gamma Wall: strike with the largest absolute total gamma ( I think you call it as PEAK ), Gamma Flip is FLIP in your screen shot, MAX PAIN (not yet in your charts), I think is theoretical minimum P&L point for options holders. This would mean expanding the range of metrics your system outputs without limiting to single “peak” and “flip” line. In the nt script, all these should be selectable for display via check boxs. Currently everything is displayed. In summary, I think what is needed is Flip, Peak, GEX1–4, Call Wall, Put Wall, Max Pain level.
  14. I think the elite and ats versions are automated, not realesed yet, waiting for the release of q_range it's like a support/resistance indi so we can use it with the qpilot signals
  15. @apmoo @kimsam any chance to educate QuantVue QtimeRenko, please? https://workupload.com/file/UbKWTqh7XPR
  16. @Kimsam... Thanks so much - shut out to Ninja - couldn't get Radar to work, change the dates to 06!
  17. anyone has q time renko educated?
  18. Thanks that what i looked because i never saw what is my profit or my sl !
  19. Yesterday
  20. Welcome to Indo-Investasi.com. Please feel free to browse around and get to know the others. If you have any questions please don't hesitate to ask.

  21. Not related with GEX but @kimsam could you create something similar to bestorderflow MBO?
  22. In the crack of Metastock in DataFeed select ReutersDataLink. This fix the crash in system test and Explorer.
  23. I use this one OrderLineDecoratorOrderFlowHUB-hjcdfp.zip
  24. Anyone have on his chart a good big trade indicator with easy edit ? and by the way if it exist something in ninjatrader for position management, for see $ of the stop loss et tp, if we managed them
  25. @axsx check this update .. https://ibb.co/RT7YTSyn
  26. Yes .. its available can add it
  27. Hi Kim is it possible to add QQQ (levels are accurate too or even better than NDX) I know it s lot of work for you. Thanks a lot for your help !!
  1. Load more activity

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

×
×
  • Create New...