hello everyone , hope all is well
i am looking for an OSMA mtf multipair dashboard ---- many thanks for if sharing-------------------
Re: MT4 Indicator requests and ideas
22002你好,能不能帮忙修改为MTF模式 并且在RSI和STOH交叉的时候添加声音和弹窗提醒 其他的功能不要改变。
Translation:
Hello, could you please help me change it to MTF mode and add sound and pop-up alerts when RSI and STOH cross? Please don't change any other functions.
Translation:
Hello, could you please help me change it to MTF mode and add sound and pop-up alerts when RSI and STOH cross? Please don't change any other functions.
Re: MT4 Indicator requests and ideas
22003Dear kvak, would you be so kind as to add fulls set of MAs to the attached indicator, please?
- These users thanked the author FredericoA for the post:
- RodrigoRT7
Re: MT4 Indicator requests and ideas
22004Hello. I have not code for this version, but update one version what I found and posted it here...test it CLICKFredericoA wrote: Tue Apr 28, 2026 6:49 pm Dear kvak, would you be so kind as to add fulls set of MAs to the attached indicator, please?
- These users thanked the author kvak for the post (total 2):
- RodrigoRT7, Striker
"fear moves faster than greed"
Re: MT4 Indicator requests and ideas
22005Hello 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!
Re: MT4 Indicator requests and ideas
22006I have a small ask. Can anyone code these two indicators to appear in the bottom sub-window of my charts?
Like where oscillators are.
Like where oscillators are.
Re: MT4 Indicator requests and ideas
22007something like that?CaliNgu27 wrote: Wed May 13, 2026 9:53 am I have a small ask. Can anyone code these two indicators to appear in the bottom sub-window of my charts?
Like where oscillators are.
(C) PIP VALUE.mq4
(C) PIPS.mq4
Re: MT4 Indicator requests and ideas
22008Hello 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.
Re: MT4 Indicator requests and ideas
22009Please 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)
// 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
22010Last [1] is (shift 1)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)
[ 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