Re: Something interesting from Chatgpt/AI please post here

621
Spent part of this Saturday evening working on this indicator.
https://www.tradingview.com/script/nnjB ... arketMind/

The code's creator describes it as follows:

"SATTAM | MarketMind — a complete trading workspace in one overlay: a Heikin-Ashi trend engine, automatic targets and trailing stop, volume-weighted support and resistance, a multi-timeframe dashboard and a live economic calendar. Open source, with every key parameter exposed as an input.

HOW IT WORKS

MarketMind builds Heikin-Ashi candles internally and uses them to read the trend, then places every level on real price. The trend decision comes from a smoothed candle, so market noise flips it less often. Entries, targets and stops are measured on the price you actually trade.

Keep your chart on regular candles. The script calculates Heikin-Ashi itself, so switching the chart to Heikin-Ashi would smooth the data twice and distort the signals.


EDIT
What does "GE" on the chart mean?
GE stands for Golden Entry.
Purpose: It marks an optimal pullback / re-entry price level after a Buy or Sell signal has been triggered.

What does "$$$" on the dashboard mean?
$$$ represents the Money Flow / Volume Activity Gauge.
Purpose: It measures institutional trading volume on the current candle compared to the recent 20-period Volume
These users thanked the author Pelle for the post (total 3):
JohnL33, Ahhbii98, kelvinchase

Re: Something interesting from Chatgpt/AI please post here

622
Whenever I remember, I need to read that post by ionone: post1295583980.html#p1295583980

So, I made a new version.

AI says "You are completely right. Forcing MT4-style series indexing (ArraySetAsSeries(..., true)) in MT5 leads to mixed array orientations, out-of-order data fetching, and indexing synchronization bugs.

Summary of Changes:
Removed All ArraySetAsSeries:
Completely eliminated ArraySetAsSeries calls across the entire indicator.
Native MT5 Chronological Indexing (0 = Oldest, size - 1 = Current/Newest):
TFBias: Refactored to iterate and compute 20 EMA across standard non-series array c[0..copied-1].
MacroUp / MacroDown: Standardized to non-series chronological scanning.
DrawPrevExtremes: Direct non-series high/low extraction.
DrawHTF: Converted to standard MT5 rates indexing (copied - 1 - k).
OnChartEvent: Passes the actual latest bar (copied - 1) to DrawTable instead of 0."
These users thanked the author Pelle for the post (total 4):
vikxel, Ahhbii98, kelvinchase, waal69

Re: Something interesting from Chatgpt/AI please post here

626
srinarayani13 wrote: Sun Sep 20, 2026 6:30 pm https://in.tradingview.com/v/EtDoAmOi/

Please check this very good order block levels
I'm trying to convert that Pine Script version into an MT5 version.
These users thanked the author Pelle for the post (total 3):
kvak, kelvinchase, srinarayani13

Re: Something interesting from Chatgpt/AI please post here

628
Pelle wrote: Fri Aug 21, 2026 4:13 am QuantAlgo Gaussian Filter Trend for MT5

The Gaussian Filter Trend "QuantAlgo" smooths price data with a Gaussian-weighted filter to reveal a cleaner trend line, then uses the relationship between price (or a smoothed price series) and that filtered line, plus changes in the filter’s slope, to signal trend direction and potential entries or exits.

This indicator reduces short-term noise and can respond faster than very long simple moving averages, but it still lags price, is sensitive to parameter choices, and works best when combined with confirmation indicators.

The unique display created by QuantAlgo is referred to as the “Star field.” They are generated around the main Gaussian trend line at two volatility-scaled distances, with their opacity fading as they get farther from the trend line.
  • Higher volatility: The star field spreads farther away from the trend line.
  • Lower volatility: The stars contract closer to the trend line.
With this display, traders can interpret the whole star field as a representation of the filtered trend's volatility envelope/decay.

A new TradingView port for MT5.
Thank you so much for mq5 file, Please can you post mq4 file for QuantAlgo Gaussian Filter Trend, with or without Star field

Re: Something interesting from Chatgpt/AI please post here

630
srinarayani13 wrote: Mon Sep 21, 2026 4:20 pm Thank you so much for mq5 file, Please can you post mq4 file for QuantAlgo Gaussian Filter Trend, with or without Star field
Give that a try. At first glance, it looked pretty similar to MT5.
These users thanked the author Pelle for the post:
FXSurf