Tabulating securities data
Currently, I write parameters from my custom indicators to the event log. This means I have to constantly scroll to be able to read all the information. Is there a way I can tabulate these custom events from multiple chart windows in one place? So for example I can view them in a grid format thus:
Security | Parameter 1 | Parameter2 | ...
EUR/USD | Value 1 | Value 2 | ...
GBP/USD | Value 1 | Value 2 | ...
...
...
etc...
Regards.
It's nothing complicated. The code looks something like this:
Print(Symbol() + " " + Period() + " " + ParameterValue);
Ideally I would like this to be presented in a spreadsheet format such that the ParameterValue for multiple Symbols in multiple timeframes can be viewed simultaneously.
Hope that helps.
Regards.
I would also like to point out that I started another thread a few days ago where I proposed an alternative system that sits within your charting package that bypasses the charts altogether and relies solely on indicators to generate signals that can then be used to bring up the relevant charts.
Regards.
Hello AminderG.
Try to help you with your question. If you use C# I would propose to create special panel (plug-in) for your needs and include it in the client. Without C# we have limited opportunities, but you can do next:
1. In code write your text with some special word, for example "mylogs":
Print("mylogs "+" | "+Symbol()+" | "+Open[0]+" | "+Volume[0]);
2. In PTMC client use new event log panel with "System" logs enabled:
3. Setup filter for even log panel to see only messages with "mylogs":
4. Run your scripts. Now you have one panel that displays required data:
Hello AminderG, please participate in our discussion.