Support Board
Date/Time: Sat, 15 Mar 2025 03:30:31 +0000
Post From: I am unable to find the source code for the DOM chart
[2022-05-11 19:06:45] |
JohnR - User831573 - Posts: 320 |
If you look in studies.cpp inside of \SierraChart\ACS_Source\Studies.cpp, there is some source that might be what you are looking for. /*==========================================================================*/ SCSFExport scsf_DepthOfMarketData(SCStudyInterfaceRef sc) //scsf_DOMAccess { SCSubgraphRef Subgraph_BidSize = sc.Subgraph[0]; SCSubgraphRef Subgraph_BidValue = sc.Subgraph[1]; SCSubgraphRef Subgraph_AskSize = sc.Subgraph[2]; SCSubgraphRef Subgraph_AskValue = sc.Subgraph[3]; SCSubgraphRef Subgraph_BidStackPullValue = sc.Subgraph[4]; SCSubgraphRef Subgraph_AskStackPullValue = sc.Subgraph[5]; Hope this helps, JohnR |