Thanks,
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Price label on indicator horiz' line
Collapse
X
-
Bertrand, thank you for the prompt reply.
ES, CL, TF -- any instrument, any timeframe (minutes, range etc.). May it be because I use another locale -- Russian -- with comma as a period sign instead of dot?
How to fix it not changing the locale?Last edited by quicktrick; 11-06-2014, 10:36 AM.
Comment
-
The price formatting is established in the OnBarUpdate method, subsection: if (!_init)
Modify the line: _priceFormat = string.Format("F{0}", Digits);
to get what you need.
Check out the MSDN C# reference for parameters going to string.Format.
Comment
-
EnsoTrader, thank you for your help! I tried different string formats previously, but without much success. Today I tried to change string formats again and again without any success. But I noticed there one thing in two places: TickSize.ToString().IndexOf(".")
I replaced dot with comma there, and everything is working now!
Not very good code however, depending on the locale.
Thanks again!
AlexLast edited by quicktrick; 11-07-2014, 05:11 AM.
Comment
-
You're welcome Quicktrick.
Check out this:
http://msdn.microsoft.com/en-us/libr...ormatinfo.aspx
Use NumberFormatInfo.CurrencyDecimalSeparator to remove the hard coding and make it culture locale aware.
Comment
-
Thanks a lot EnsoTrader!
Though I'm not a programmer (I had been a C programmer for some time about 25 years ago
) and I don't know C#, I've made it. 
Here is a locale independent (I hope so) version of LabelHorzLinesAlerts.
All the best to you!
AlexLast edited by quicktrick; 11-07-2014, 08:11 AM.
Comment
-
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
173 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
91 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 12:02 AM
|
||
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
129 views
0 likes
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
208 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
186 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment