⤴️-Paid Ad- Check advertising disclaimer here. Add your banner here.🔥
All Activity
- Past hour
-
Indicators to trade like Fabio Valentini ,Carmine Rosato ,etc.
pygmalion5000 replied to ⭐ kapitansb's topic in Ninja Trader 8
it is actually a rebrand of volumetrica, another italian software company. - Today
-
pygmalion5000 reacted to a post in a topic:
Indicators to trade like Fabio Valentini ,Carmine Rosato ,etc.
-
Does anyone have the Anchored Volume Profile indicator?
pygmalion5000 replied to Jack's topic in Ninja Trader 8
https://nexusfi.com/local_links.php?action=ratelink&catid=27&linkid=2720 has several modes -
pygmalion5000 reacted to a post in a topic:
ChartToolBar
-
pygmalion5000 reacted to a post in a topic:
ChartToolBar
-
@Ninja_On_The_Roof @misalto @N9T Please evaluate. Request you to Review and Improvise. Regards!!
-
@apmoo @kimsam @apmoo Please evaluate. Request you to Review and Improvise. Regards!!
-
Do you know the Auto Strategy Builder of tradedevils?
kingmob6 replied to chillon's topic in Ninja Trader 8
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. -
KJs started following Leavitt Autotrader -
-
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
-
Fixed .. Maverick bundle lastest update march 2026
Letho replied to kimsam's topic in Ninja Trader 8
thank you bro -
RamAli reacted to a post in a topic:
Fixed ... QPilotPro_1_0_1_0
-
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.
-
⭐ chullankallan reacted to a post in a topic:
Metastock 20 realtime c*****d
-
⭐ chullankallan reacted to a post in a topic:
Metastock 20 realtime c*****d
-
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.
-
i use offline data. I didn't understand how or where to do what you said.
-
babaluFlow reacted to a post in a topic:
KimSam NT8 GEX Calc
-
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
-
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.
-
fxtrader99 reacted to a post in a topic:
A BIG TRADE INDICATOR ?
-
axsx reacted to a post in a topic:
KimSam NT8 GEX Calc
-
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
-
@apmoo @kimsam any chance to educate QuantVue QtimeRenko, please? https://workupload.com/file/UbKWTqh7XPR
-
Fixed .. Maverick bundle lastest update march 2026
janes34 replied to kimsam's topic in Ninja Trader 8
@Kimsam... Thanks so much - shut out to Ninja - couldn't get Radar to work, change the dates to 06! -
anyone has q time renko educated?
-
Kirua reacted to a post in a topic:
A BIG TRADE INDICATOR ?
-
Thanks that what i looked because i never saw what is my profit or my sl !
- Yesterday
-
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.
-
ampf started following KimSam NT8 GEX Calc
-
Not related with GEX but @kimsam could you create something similar to bestorderflow MBO?
-
Ranks_Sheba joined the community
-
In the crack of Metastock in DataFeed select ReutersDataLink. This fix the crash in system test and Explorer.
-
I use this one OrderLineDecoratorOrderFlowHUB-hjcdfp.zip
-
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
-
@axsx check this update .. https://ibb.co/RT7YTSyn
-
Yes .. its available can add it
-
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 !!