⭐ bomdila Posted July 14, 2021 Report Share Posted July 14, 2021 Hi friends, I have just started using NT8 so I am not aware of much resources. Can someone share EMA with button on/off on toolbar, same for pivots, previous day's levels etc. We don't require all indicators all the time while trading on charts but we should try to keep it as clean as possible. If we plot 13, 21, 50, 100, 200 EMA on a chart and we wish only 21 visible. I would appreciate any help Thank you all Quote Link to comment Share on other sites More sharing options...
⭐ bomdila Posted July 20, 2021 Author Report Share Posted July 20, 2021 Hi friends, why I am getting this forum pages too messy, can anyone help me out Quote Link to comment Share on other sites More sharing options...
fx1trader Posted July 20, 2021 Report Share Posted July 20, 2021 Hi bomdila.... same is happening here..... a complete mess Quote Link to comment Share on other sites More sharing options...
⭐ laser1000it Posted July 20, 2021 Report Share Posted July 20, 2021 Also from my side ......same situation with 2 different PC and 2 different internet provider Quote Link to comment Share on other sites More sharing options...
⭐ bomdila Posted July 20, 2021 Author Report Share Posted July 20, 2021 Admins are requested to look into the matter and take an immediate action as we are really not able to read/write any thread in the forum. Quote Link to comment Share on other sites More sharing options...
Traderbeauty Posted July 21, 2021 Report Share Posted July 21, 2021 i believe that whatever problem there was is fixed now hamir, ⭐ TRAD3R.GURU and ⭐ bomdila 3 Quote Link to comment Share on other sites More sharing options...
hamir Posted July 21, 2021 Report Share Posted July 21, 2021 Hi friends, I have just started using NT8 so I am not aware of much resources. Can someone share EMA with button on/off on toolbar, same for pivots, previous day's levels etc. We don't require all indicators all the time while trading on charts but we should try to keep it as clean as possible. If we plot 13, 21, 50, 100, 200 EMA on a chart and we wish only 21 visible. I would appreciate any help Thank you all Hi bomdila I did not try it but have a look and see if will work for you https://ninjatraderecosystem.com/user-app-share-download/toolbar-to-toggle-on-of-drawings-indicators-trade-markers-and-wicks/ RajanAnand and ⭐ bomdila 2 Quote Link to comment Share on other sites More sharing options...
RajanAnand Posted July 22, 2021 Report Share Posted July 22, 2021 (edited) Hi friends, I have just started using NT8 so I am not aware of much resources. Can someone share EMA with button on/off on toolbar, same for pivots, previous day's levels etc. We don't require all indicators all the time while trading on charts but we should try to keep it as clean as possible. If we plot 13, 21, 50, 100, 200 EMA on a chart and we wish only 21 visible. I would appreciate any help Thank you all You should registered with ninja forum, there are lot of great guys there who can actively help you, Check this thread: ninjatrader(.)com/support/forum/forum/ninjatrader-8/indicator-development/1090344-toolbar-button-for-indicator-show-hide You can also try to code a generic add on OR an indicator which can enable you to control all indicator directly from chart chart.. I use toggle button to control strategy at realtime without needing to restart it. if you need i can provide you sample,for adding toggle button on chart via Add-on Once you have added those toggle buttons then can use below sample code: to enable disable indicators programmatically. private void btnIndicatorsClick(object sender, RoutedEventArgs e) { System.Windows.Controls.Button button = sender as System.Windows.Controls.Button; if (button != null) { // toggle all indicators foreach (var obj in chartWindow.ActiveChartControl.ChartObjects) { var indi = obj as Indicator; if (indi != null) { if (indiSwitch) { if (indi.Name !="SMA") { indi.IsVisible = false; } } else if (!indiSwitch) { if (indi.Name !="SMA") { indi.IsVisible = true; } } } } indiSwitch = !indiSwitch; chartWindow.ActiveChartControl.InvalidateVisual(); ForceRefresh(); } } Edited July 22, 2021 by RajanAnand hamir and ⭐ bomdila 2 Quote Link to comment Share on other sites More sharing options...
⭐ bomdila Posted July 22, 2021 Author Report Share Posted July 22, 2021 i believe that whatever problem there was is fixed now Thanks....all working now as normal Quote Link to comment Share on other sites More sharing options...
⭐ bomdila Posted July 22, 2021 Author Report Share Posted July 22, 2021 You should registered with ninja forum, there are lot of great guys there who can actively help you, Check this thread: ninjatrader(.)com/support/forum/forum/ninjatrader-8/indicator-development/1090344-toolbar-button-for-indicator-show-hide Thanks Rajan, I am new to NT8 so I am not aware of most of the things. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.