Support Board
Date/Time: Mon, 25 Nov 2024 13:37:42 +0000
Post From: How do I add
[2024-03-04 13:46:04] |
John - SC Support - Posts: 36238 |
I want to add the trade that comes in on combined time and sales and paste a circle or something onto the candlestick chart at the same price and candle. This is different from large volume trade because this could be different lot sizes and over more than one price. How do I do this?
There is not a way to get this using the built-in tools. You would have to create a custom study to get what you want from the Time and Sales and then match that up to the appropriate bar. Refer to the following: sc.GetTimeAndSales() List of Third Party Sierra Chart Study and System Programmers If time and sales is not possible, I also have a 50 millisecond chart with volumes and delta. How do I paste an indicator onto a different chart's candle at the same price and ideally with the delta or volume value, if a 50 millisecond candle has more than a certain delta or volume?
The easiest way to do this would be to use the "Spreadsheet Formula" on the 50 millisecond chart to get the signal for when you want the marker. The Spreadsheet Formula study, despite its name, uses the Alert Syntax. So your formula would look something like the following: =AND(ID1.SG1 > 20, V > 1000) Where ID1 is the ID of the "Numbers Bars Calculated Values" study and SG1 is the first subgraph for this study, which is the delta. V is the volume of the bar. Then use the "Study/Price Overlay" study to overlay the "Spreadsheet Formula" to the chart you want and either display it directly (using a Draw Style such as "Point on High"). Or you can then use the "Study/Price Overlay" to give input to the "Color Bar Based On Alert Condition". Refer to the following: Spreadsheet Formula Study/Price Overlay Study Color Bar Based on Alert Condition Study/Chart Alerts And Scanning For the most reliable, advanced, and zero cost futures order routing, use the Teton service: Sierra Chart Teton Futures Order Routing |