I'd like to make an indicator that plots in the lower portion of the screen the ratio of orders: [(above ask)/ask] / [(below bid)/bid].
If this is possible, is anyone able to point me in the right direction?
//This namespace holds Indicators in this folder and is required. Do not change it. namespace NinjaTrader.NinjaScript.Indicators { public class messingWithLevelOneExample : Indicator { private string AboveWhich; protected override void OnStateChange() { if (State == State.SetDefaults) { Description = @"A simple reproduction of the T&S window."; Name = "messingWithLevelOneExample"; Calculate = Calculate.OnEachTick; IsOverlay = false; DisplayInDataBox = false; DrawOnPricePanel = false; //Disable this property if your indicator requires custom values that cumulate with each new market data event. //See Help Guide for additional information. IsSuspendedWhileInactive = true; } else if (State == State.Historical) { ClearOutputWindow(); AboveWhich = string.Empty; Draw.TextFixed(this, "note", "messingWithLevelOneExample prints to the NinjaScript Output window\r\nNew -> NinjaScript Output", TextPosition.BottomLeft); } } protected override void OnBarUpdate() { } protected override void OnMarketData(MarketDataEventArgs marketDataUpdate) { if (marketDataUpdate.MarketDataType != MarketDataType.Last) return; if (marketDataUpdate.Price > marketDataUpdate.Ask) { AboveWhich = "Above Ask"; } else if (marketDataUpdate.Price < marketDataUpdate.Bid) { AboveWhich = "Below Bid"; } Print(string.Format("{0:HH:mm:ss} | last: {1:0.00}, ask: {2:0.00}, bid: {3:0.00} | volume: {4} | color: {5}", marketDataUpdate.Time, marketDataUpdate.Price, marketDataUpdate.Ask, marketDataUpdate.Bid, marketDataUpdate.Volume, AboveWhich)); } } }
public class AGGRESSIONv1 : Indicator { private Series<double> plotOne; protected override void OnStateChange() { if (State == State.SetDefaults) { Description = @"This version hopefully will create a histogram to a chart and produce no errors in the log"; Name = "AGGRESSIONv1"; Calculate = Calculate.OnBarClose; IsOverlay = false; DisplayInDataBox = true; PaintPriceMarkers = true; //Disable this property if your indicator requires custom values that cumulate with each new market data event. //See Help Guide for additional information. IsSuspendedWhileInactive = true; AddPlot(new Stroke(Brushes.Black), PlotStyle.Bar, "Aggression Ratio"); AddLine(Brushes.DarkGray, 0, NinjaTrader.Custom.Resource.NinjaScriptIndicatorZe roLine); } else if (State == State.Configure) { plotOne = new Series<double>(this); } } protected override void OnBarUpdate() { if(CurrentBar < 0) return; if(CurrentBar > Count-50) { double plotOneLocal = -0.2; plotOne[0] = plotOneLocal; Value[0] = plotOne[0]; //Value[1] = -1; } } }//end class
//Disable this property if your indicator requires custom values that cumulate with each new market data event. //See Help Guide for additional information. IsSuspendedWhileInactive = true;
Topics | Statistics | Last Post | ||
---|---|---|---|---|
Started by dweems, 07-06-2022, 12:44 PM
|
6 responses
106 views
0 likes
|
Last Post
![]()
by bltdavid
Yesterday, 11:16 PM
|
||
Started by chenelle, Yesterday, 09:06 PM
|
0 responses
10 views
0 likes
|
Last Post
![]()
by chenelle
Yesterday, 09:06 PM
|
||
Started by pjsmith, 03-27-2023, 02:26 AM
|
2 responses
22 views
0 likes
|
Last Post
![]()
by bltdavid
Yesterday, 07:57 PM
|
||
Started by SevanKambel, 03-30-2023, 06:21 PM
|
5 responses
41 views
0 likes
|
Last Post
![]()
by bltdavid
Yesterday, 07:50 PM
|
||
Started by BrianARice, 10-04-2020, 07:26 AM
|
5 responses
99 views
0 likes
|
Last Post
![]()
by bltdavid
Yesterday, 07:25 PM
|
Futures, foreign currency and options trading contains substantial risk and is not for every investor. An investor could potentially lose all or more than the initial investment. Risk capital is money that can be lost without jeopardizing one’s financial security or lifestyle. Only risk capital should be used for trading and only those with sufficient risk capital should consider trading. Past performance is not necessarily indicative of future results. View Full Risk Disclosure.
CFTC Rules 4.41 - Hypothetical or Simulated performance results have certain limitations, unlike an actual performance record, simulated results do not represent actual trading. Also, since the trades have not been executed, the results may have under-or-over compensated for the impact, if any, of certain market factors, such as lack of liquidity. Simulated trading programs in general are also subject to the fact that they are designed with the benefit of hindsight. No representation is being made that any account will or is likely to achieve profit or losses similar to those shown.
This website is hosted and operated by NinjaTrader, LLC (“NT”), a software development company which owns and supports all proprietary technology relating to and including the NinjaTrader trading platform. NT is an affiliated company to NinjaTrader Brokerage (“NTB”), which is a NFA registered introducing broker (NFA #0339976) providing brokerage services to traders of futures and foreign exchange products. This website is intended for educational and informational purposes only and should not be viewed as a solicitation or recommendation of any product, service or trading strategy. No offer or solicitation to buy or sell securities, securities derivative or futures products of any kind, or any type of trading or investment advice, recommendation or strategy, is made, given, or in any manner endorsed by any NT affiliate and the information made available on this Web site is not an offer or solicitation of any kind. Specific questions related to a brokerage account should be sent to your broker directly. The content and opinions expressed on this website are those of the authors and do not necessarily reflect the official policy or position of NT or any of its affiliates.
Vendors along with their websites, products and services, collectively referred to as (“Vendor Content”), are independent persons or companies that are in no manner affiliated with NT or any if its affiliates. NT or any of its affiliates are not responsible for, do not approve, recommend or endorse any Vendor Content referenced on this website and it’s your sole responsibility to evaluate Vendor Content. Please be aware that any performance information provided by a vendor should be considered hypothetical and must contain the disclosures required by NFA Rule 2-29(c). If you are interested in learning more about, or investigating the quality of, any such Vendor Content you must contact the vendor, provider or seller of such Vendor Content. No person employed by, or associated with, NT or any of its affiliates is authorized to provide any information about any such Vendor Content.
Comment