Click here to Login

Trading Software Trading objects Features How-to Blog Search



Close Price Above Cursor

by QuantShare, 247 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?



>>>> More trading objects? click here to search for trading sytems, downloaders, screens, custom drawing tools, indicators... by country, market or style.

>>>> To get this item and hundreds of other items, click here to join and download the Best Trading Software for Free .



No notes

Rate an item Rate an item Rate an item Rate an item Rate an item Write a review no reviews Number of downloads 10 downloads Notes Report an item


Type: Custom Drawing Tool

Object ID: 449


Country:
All

Market: All

Style:
Technical Analysis




Related Trading Objects



Country
Page 1
Trading the Equity Curve
by QuantShare, uploaded several months ago


No notes

Rate an item Rate an item Rate an item Rate an item Rate an item Number of downloads 4 Notes Report an item
Opening Range Breakout Indicator
by QuantShare, uploaded several months ago
No notes

Rate an item Rate an item Rate an item Rate an item Rate an item Number of downloads 3 Notes Report an item
Wilder's Smoothing - Moving Average
by QuantShare, uploaded several months ago
No notes

Rate an item Rate an item Rate an item Rate an item Rate an item Number of downloads 9 Notes Report an item
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









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


Related objects
Show All
Slope Angle of a Trendline (by QuantShare, uploaded several months ago)
No notes

Rate an item Rate an item Rate an item Rate an item Rate an item Number of downloads 13 Notes Report an item
Yahoo EOD historical quotes (by QuantShare, uploaded several months ago)
No notes

Rate an item Rate an item Rate an item Rate an item Rate an item Number of downloads 540 Notes Report an item
Futures and Forex historical data (by Tom Huggens, uploaded several months ago)
No notes

Rate an item Rate an item Rate an item Rate an item Rate an item Number of downloads 761 Notes Report an item
Historical Stock Market Data (by QuantShare, uploaded several months ago)
No notes

Rate an item Rate an item Rate an item Rate an item Rate an item Number of downloads 1291 Notes Report an item
Percentile - Percent Rank of a Trading Indicator (by QuantShare, uploaded several months ago)
No notes

Rate an item Rate an item Rate an item Rate an item Rate an item Number of downloads 36 Notes Report an item
Forex symbols (by Tom Huggens, uploaded several months ago)
No notes

Rate an item Rate an item Rate an item Rate an item Rate an item Number of downloads 554 Notes Report an item
Auto Support Line (by Caleb, uploaded several months ago)
No notes

Rate an item Rate an item Rate an item Rate an item Rate an item Number of downloads 13 Notes Report an item
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


Forum Threads



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
Support
Contact Us
Trading Forum
How-to Lessons
Manual
Company
About Us
Privacy
Terms of Use

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