NexusFi: Find Your Edge


Home Menu

 





Showing the sequences of bars marked by me using line drawing tools


Discussion in Sierra Chart

Updated
    1. trending_up 1,507 views
    2. thumb_up 0 thanks given
    3. group 1 followers
    1. forum 2 posts
    2. attach_file 1 attachments




 
Search this Thread
  #1 (permalink)
 doitagaitforme 
Rostov-na-Donu/ Russia
 
Experience: Beginner
Platform: Metatrader
Posts: 17 since Jul 2010
Thanks Given: 8
Thanks Received: 4

Hello. Help please implement the following task:

I need to perform: sc.Subgraph [0] [sc.Index] = sc.Close [sc.Index]; if at the moment there is a any drawing tool made by me on the chart.

Or i need an indicator showing the sequences of bars marked by me using line drawing tools.

Thank you.


Started this thread Reply With Quote

Can you help answer these questions
from other members on NexusFi?
CFTC Requests Tag 50 Trader Identity Data From CME and I …
Traders Hideout
Iran Fired a Missile at Israel Last Night. The $8M June …
Prediction Markets & Event Contracts
Six Days to Kickoff: World Cup Prediction Markets Hit $1 …
Prediction Markets & Event Contracts
Saylors 41-Month HODL Breaks: Strategy Sells 32 BTC as $ …
Prediction Markets & Event Contracts
Trump Lands in Beijing on CPI Day: Iran Peace Expires To …
Prediction Markets & Event Contracts
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Big Mike in Ecuador
205 thanks
Sober Journey With S&P
21 thanks
30 Sessions
20 thanks
Volume Indicators
8 thanks
Thanks Mike. Godspeed.
7 thanks
  #3 (permalink)
 doitagaitforme 
Rostov-na-Donu/ Russia
 
Experience: Beginner
Platform: Metatrader
Posts: 17 since Jul 2010
Thanks Given: 8
Thanks Received: 4


 
Code
#include "sierrachart.h"
SCDLLName("Custom Study DLL")
SCSFExport scsf_AdjustUserDrawnDrawingExample(SCStudyInterfaceRef sc)
{
	if (sc.SetDefaults)
	{
		sc.GraphName = "Adjust User Drawn Drawing Example";
		sc.GraphRegion = 0;
		sc.UpdateAlways = 1;
		sc.Subgraph[0].Name = "Last";
		return;
	}

	int DrawingIndex = 0;
	s_UseTool DrawingObject;
	while( sc.GetUserDrawnChartDrawing(sc.ChartNumber, DRAWING_LINE , DrawingObject, DrawingIndex) ) 
	{
		for (int Index = DrawingObject.BeginIndex; Index < DrawingObject.EndIndex; Index++)
		{
			sc.Subgraph[0][Index] = sc.BaseData[SC_LAST][Index];
		}
		DrawingIndex++;	
	}
}


Attached Thumbnails
Click image for larger version

Name:	@KCK17  1 Min   #1 2019-04-08  17_52_38.049.png
Views:	322
Size:	16.2 KB
ID:	264808  
Started this thread Reply With Quote




Last Updated on April 8, 2019


© 2026 NexusFi®, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Downloads - Top
no new posts