Re: Something interesting from Chatgpt/AI please post here

223
Thank you all for the feedback, testing, and ideas regarding the SOT indicator.
I’ve corrected the mistakes based on your suggestions. I might still be wrong, so feel free to improve it further and share it here with everyone.

I’ve included both the .mq4 and .ex4 files.
These users thanked the author JohnL33 for the post (total 9):
iardavan, Jimmy, Abdi, Jonex1995, ROI, mazibee, FXchaos, 88FX88, ashdays
"My Forex Holy Grail? Sure, I'll share it. It's a magical PDF that costs $997 and the first chapter is titled: 'How to Sell a $997 PDF.'"😎


Re: Something interesting from Chatgpt/AI please post here

226
JohnL33 wrote: Thu Jul 24, 2025 4:32 pm Wow..that too high for me.Not even near lvl.Only Ai do the work.Thk anyway.
Hello and regards. The interesting part was that it can have the speed of tape reading, something like having a reading tape similar to order flow trading platforms, with the difference that there you use volume. Combining it with Mr. XARD's system, which I'm testing, has become very cool. Your work is also excellent, and thank you for sharing. I hope you provide more updates. With gratitude.
These users thanked the author iardavan for the post:
JohnL33
When your strategy is based on hope, it's a HOPELESS strategy!

Re: Something interesting from Chatgpt/AI please post here

227
iardavan wrote: Fri Jul 25, 2025 1:46 pm Hello and regards. The interesting part was that it can have the speed of tape reading, something like having a reading tape similar to order flow trading platforms, with the difference that there you use volume. Combining it with Mr. XARD's system, which I'm testing, has become very cool. Your work is also excellent, and thank you for sharing. I hope you provide more updates. With gratitude.
I truly appreciate your kind words and encouragement. I’ll definitely continue working on improvements and will share more updates as they come.

Wishing you continued success with your testing and trading!
These users thanked the author JohnL33 for the post:
iardavan
"My Forex Holy Grail? Sure, I'll share it. It's a magical PDF that costs $997 and the first chapter is titled: 'How to Sell a $997 PDF.'"😎

Re: Something interesting from Chatgpt/AI please post here

228
JohnL33 wrote: Fri Jul 25, 2025 3:03 pm I truly appreciate your kind words and encouragement. I’ll definitely continue working on improvements and will share more updates as they come.

Wishing you continued success with your testing and trading!
Some ideas are coming to mind for combining this indicator with tape speed at different price levels on the chart, which I think could work well with the range volume profile indicator. This was brought up in a Discord group on SierraChart, and I have the study or indicator for it. In short, I think some interesting things can be done with it.
(Defending the positions of big players at previous price levels.)

Convert the short video below into a GIF file.
These users thanked the author iardavan for the post:
JohnL33
When your strategy is based on hope, it's a HOPELESS strategy!

Re: Something interesting from Chatgpt/AI please post here

229
iardavan wrote: Fri Jul 25, 2025 3:29 pm Some ideas are coming to mind for combining this indicator with tape speed at different price levels on the chart, which I think could work well with the range volume profile indicator. This was brought up in a Discord group on SierraChart, and I have the study or indicator for it. In short, I think some interesting things can be done with it.
(Defending the positions of big players at previous price levels.)

Convert the short video below into a GIF file.
too advance for me to even understand this..great it working for your idea.
"My Forex Holy Grail? Sure, I'll share it. It's a magical PDF that costs $997 and the first chapter is titled: 'How to Sell a $997 PDF.'"😎

Re: Something interesting from Chatgpt/AI please post here

230
A! The_Bipolar_Breakout

Detailed Breakdown of the Indicator's Logic
This is a pure price-action, alternating breakout indicator. Here is its step-by-step process inside the start() function.
Step 1: Initialization and Loop
The code begins by calculating limit, which tells it where to start processing bars. It loops from the most recent un-calculated bar backwards towards the oldest history.
Step 2: Finding the "Ceiling" and "Floor"
For every bar i in the loop, the first thing it does is establish the trading range.

This creates a dynamic support and resistance channel based on recent price history.
Step 3: The Breakout Event
It then checks if the current bar i represents a decisive break of that channel.
Bullish Breakout: (Close[i+1] < resistance_level && Close > resistance_level)
In plain English: "Did the previous bar close below the ceiling, AND did the current bar close above the ceiling?" This confirms a clean break.
Bearish Breakdown: (Close[i+1] > support_level && Close < support_level)
In plain English: "Did the previous bar close above the floor, AND did the current bar close below the floor?"

Step 4: The "Bipolar" State Check
This is the key to the alternating signals. Before plotting anything, it checks its memory (lastSignalState).
If a bullish breakout is found, it asks: "Was the last signal I drew a bearish one (or is this the first signal)?" (if(lastSignalState != 1)).
If YES, it proceeds to plot a signal.
If NO (the last signal was also bullish), it does nothing and ignores this new breakout.
The same logic applies in reverse for a bearish breakdown.

Step 5: Plotting the Signal and Updating the State
If all conditions are met, it performs two actions:
Plot the Signal: It calculates the signal_price using your InpSignalDistance input and places the Dot and Arrow in their respective buffers at bar i.

Update Its Memory: It immediately updates its state variable: lastSignalState = 1; (for bullish). Now, it will not plot another bullish signal until a bearish one appears first.
Step 6: Updating the On-Screen Label
After the loop is finished, it checks the final value of lastSignalState and updates the text and color of the on-screen display accordingly, providing you with a clear, real-time status.
These users thanked the author JohnL33 for the post (total 9):
TECHHDATE07, Jonex1995, ionone, Krunal Gajjar, Abdi, LittleCaro, iardavan, vashet, ashdays
"My Forex Holy Grail? Sure, I'll share it. It's a magical PDF that costs $997 and the first chapter is titled: 'How to Sell a $997 PDF.'"😎