Support Board
Date/Time: Sat, 23 Nov 2024 22:08:01 +0000
Post From: inbuilt indicator of "Bid & Ask Prices" not display on chart
[2024-08-01 13:09:32] |
User293048 - Posts: 2 |
Hello SC, I am trying to plot the inbuilt indicator of "Bid & Ask Prices" on a Tick price chart but it is not getting applied/displayed on the chart. I tried tweaking with the code and then it started plotting the bid ask on chart but from the current tick itself and not showing anything on the historical data with the original code consisting of following part: if ((sc.Index < sc.ArraySize -1) || sc.IsReplayRunning()) { Subgraph_BidPrices[sc.Index] = sc.BaseData[SC_BID_PRICE][sc.Index]; Subgraph_AskPrices[sc.Index] = sc.BaseData[SC_ASK_PRICE][sc.Index]; } this seems not to be working/printing the subgraph on chart (initially shows the subgraph for 1 second and then the original chart is reloaded vanishing the subgraph). There has to be some problem with the settings as this problem is faced on multiple sierracharts accounts. Kindly provide solution for this. Awaiting Response. |