Click here to Login








Close Price Above Cursor

by QuantShare, 4706 days ago
Share |






The "Close price above cursor" drawing tool is the first of a series of drawing tools that I am going to share to explain you how to create your own custom drawing tools.
This object simply displays the security close price above the mouse cursor when you move your mouse over a chart. It shows the close price of the bar the mouse is pointing at.

Here is a picture:



To create a new custom drawing tool, select "Tools" on the menu, and then click on "Custom Drawing Tools". Click on the "Add" button, type in a name and finally click on "Save".
Now, all you have to do is to write a script, which will be executed each time the application wants to draw your item.

"Close price above cursor" object:
To get the close price time-series, we need to call the following function:
double[] close = Functions.ChartData.GetTimeSeries("close");

To get the bar index the mouse cursor is pointing at:
PointPosition pos = Functions.CursorPosition;
int barindex = (int)pos.X + Functions.ChartData.StartIndex - 1;

To get the current close price:
double closePrice = close[barindex];

To draw a text that shows the close price:
TextObj text1 = Functions.PaneObject.DrawText("", "Close: " + closePrice + "\n\n", pos.X, pos.Y);
text1.FontSpec.Border.IsVisible = false;
text1.FontSpec.FontColor = Color.Green;
text1.FontSpec.Fill.Color = Color.Transparent;

To end the drawing when a trader clicks on a chart:
if(Functions.ClickPositions.Length > 0)
{
Functions.FinishDrawing();
}

To access the drawing tool, right click on the bookmark panel (under the menu), click on "Add shortcut", select "Drawing Tool" as the shortcut type, and then click on "OK". In the "Load an item" form, select "Close Price" then click on "Load".
Now, double click on "Close Price" in the bookmark panel and move your mouse over a chart.


Share This ->
Share |


You have to log in to bookmark this object
What is this?




Type: Custom Drawing Tool

Object ID: 449


Country:
All

Market: All

Style:
Technical Analysis

Reviews
You must log in first

Join now
and get instant access for free to the trading software, the Sharing server and the Social network website.
Click here


Related objects

Empty

Number of reviews
Click to add a review
Average rate
Click to rate this item
Number of times this object was downloaded
Number of rates the current object received
Report an object
if you can't run it for example or if it contains errors
Click to report this object

Technical Analysis


Fundamental Analysis



Random Blog Posts

Trading software new features

Money Management: Optimize a trading system

Optimization of a trading system

How to create custom databases in your trading software

Technical Analysis Using Multiple Timeframes - Second Part

New features in QuantShare - Trading Software

Technical Analysis Using Multiple Timeframes

Short Index - Part 2

Show All

Number of reviews
Click to add a review
Average rate
Click to rate this item
Number of times this object was downloaded
Number of rates the current object received
Report an object
if you can't run it for example or if it contains errors
Click to report this object






QuantShare
Product
QuantShare
Features
Create an account
Affiliate Program
Support
Contact Us
Trading Forum
How-to Lessons
Manual
Company
About Us
Privacy
Terms of Use

Copyright © 2024 QuantShare.com
Social Media
Follow us on Facebook
Twitter Follow us on Twitter
Google+
Follow us on Google+
RSS Trading Items



Trading financial instruments, including foreign exchange on margin, carries a high level of risk and is not suitable for all investors. The high degree of leverage can work against you as well as for you. Before deciding to invest in financial instruments or foreign exchange you should carefully consider your investment objectives, level of experience, and risk appetite. The possibility exists that you could sustain a loss of some or all of your initial investment and therefore you should not invest money that you cannot afford to lose. You should be aware of all the risks associated with trading and seek advice from an independent financial advisor if you have any doubts.