Re: MT4 Indicator requests and ideas

22005
Hello everyone. I'd like to post my indicators that I created with the help of DeepSick and ChatGpt. They are two indicators, and they now have a manual multiplier of 0.0 (standard), and 0.1 and above (more sensitive). They are VSAs. I'd like to leave them here in case I lose these codes, and if anyone wants to improve them, feel free. Thank you!
These users thanked the author Kull for the post (total 5):
ramsdac, Striker, AlainP, RodrigoRT7, linfeng

Re: MT4 Indicator requests and ideas

22008
Hello everyone, good morning. My notebook isn't working well; I feel I'll have to buy another one soon. I'd like to leave 4 oscillators I've been working on here, in case I lose them. Feel free to use and improve them. I use MACD_OSC_OC with a period of 200 and a signal period of 23. For Osc Oc 10 on ETHUSD, I use false normalization, and the step filters are at 4600; they change from asset to asset. For Osc Oc X, you should use false normalization. For some skull symbols to appear in Osc Oc X and the wick and body 7, you need the skullx font.The Wick and Body 7, in the version below, has alerts, the alerts that I have made available below. In Osc Oc X use the average set at 80.
These users thanked the author Kull for the post (total 4):
ashdays, linfeng, delp, Striker

Re: MT4 Indicator requests and ideas

22009
Please could someone help explain the function of the last 1 in this EA icustome function

// OSMA_FXTIDYLUCKYSTAR_V2.0 check
if(iCustom(Symbol(),time_frame,"tidy/OSMA_FXTIDYLUCKYSTAR_V2.0",separator00,OSMA_fastEMA,OSMA_slowEMA,OSMA_signal,separator01,positiveSensitivity,negativeSensitivity,historyBarsCount,drawDivergenceLines,displayAlert,alertsON,2,1) !=EMPTY_VALUE)
everyone is brain washed either by religion, weed, self-talking, alcohol even those who doubt the most are self brain washed

Re: MT4 Indicator requests and ideas

22010
Mrtrader wrote: Tue May 19, 2026 7:01 am Please could someone help explain the function of the last 1 in this EA icustome function

// OSMA_FXTIDYLUCKYSTAR_V2.0 check
if(iCustom(Symbol(),time_frame,"tidy/OSMA_FXTIDYLUCKYSTAR_V2.0",separator00,OSMA_fastEMA,OSMA_slowEMA,OSMA_signal,separator01,positiveSensitivity,negativeSensitivity,historyBarsCount,drawDivergenceLines,displayAlert,alertsON,2,1) !=EMPTY_VALUE)
Last [1] is (shift 1)
[ If ] cheks that the buffer [2] has generated a valid [!=EMPTY_VALUE = NOT EMPTY VALUE] on the last completed bar , your (shift 1)
Why this check ? to ensure there are no uninitialized data
again Why ? to avoid throwing index/null errors

Regards