Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Correct usage of Globals.GetValue / Globals.SetValue

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Correct usage of Globals.GetValue / Globals.SetValue

    Claude.ai is telling me that I should be able to store data through the Globals class like

    private const string PERSISTENT_DICT_KEY = "MyPersistentInfoDictionary";


    string jsonData = _myDictionary.ToJson();
    Globals.SetValue(PERSISTENT_DICT_KEY, jsonData);

    and back:

    object rawValue = Globals.GetValue(PERSISTENT_DICT_KEY);
    string jsonData = rawValue.ToString();
    var deserializedDict = jsonData.FromJson<Dictionary<KEY, VALUE>>();
    ​ if (deserializedDict != null) {
    _myDictionary = deserializedDict;
    }​


    but I get the compilations error:
    'Globals' does not contain a definition for 'GetValue',CS0117

    'Globals' does not contain a definition for 'SetValue',CS0117


    Is there a possibility in NinjaTrader 8.1 to use Globals to store/retrieve a string value?

    Thank you for example line of code using Globals to store/retireve a string or an integer.


    Last edited by giogio1; 02-26-2025, 11:27 AM.

    #2
    Hello giogio1,

    This would be outside of what is supported by the Engineering support team.

    This thread will remain open for any community members that would like to provide guidance.

    You can also contact a professional NinjaScript Consultant who would be eager to create or modify this script at your request or assist you with your script. The NinjaTrader Ecosystem has affiliate contacts who provide educational as well as consulting services. Please let me know if you would like a list of affiliate consultants who would be happy to create this script or any others at your request or provide one on one educational services.
    Chelsea B.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    558 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    324 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    101 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    545 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    547 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X