<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:media="http://search.yahoo.com/mrss/"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Ninjascript &#8211; PatternSmart.com</title>
	<atom:link href="https://patternsmart.com/wp/tag/ninjascript/feed/" rel="self" type="application/rss+xml" />
	<link>https://patternsmart.com/wp</link>
	<description>PatternSmart Blog</description>
	<lastBuildDate>Wed, 22 Feb 2017 03:23:09 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>Color var not saved in template error in Ninjatrader indicator</title>
		<link>https://patternsmart.com/wp/color-var-not-saved-in-template-error-in-ninjatrader-indicator/</link>
					<comments>https://patternsmart.com/wp/color-var-not-saved-in-template-error-in-ninjatrader-indicator/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Wed, 22 Feb 2017 03:23:09 +0000</pubDate>
				<category><![CDATA[Ninjatrader]]></category>
		<category><![CDATA[Ninjascript]]></category>
		<guid isPermaLink="false">http://patternsmart.com/wp/?p=516</guid>

					<description><![CDATA[it has to be written in this way. [Description(&#8220;Color of level 1&#8221;)] [GridCategory(&#8220;Parameters&#8221;)] public Color Color1 { get { return color1; } set { color1 = value; } } [Browsable(false)] public string Color1Serialize { get { return NinjaTrader.Gui.Design.SerializableColor.ToString( color1); } set { color1 = NinjaTrader.Gui.Design.SerializableColor.FromStrin g(value); } }]]></description>
		
					<wfw:commentRss>https://patternsmart.com/wp/color-var-not-saved-in-template-error-in-ninjatrader-indicator/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>User Defined Methods in Ninjatrader indicator and strategy</title>
		<link>https://patternsmart.com/wp/user-defined-methods-in-ninjatrader-indicator-and-strategy/</link>
					<comments>https://patternsmart.com/wp/user-defined-methods-in-ninjatrader-indicator-and-strategy/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Wed, 22 Feb 2017 03:21:59 +0000</pubDate>
				<category><![CDATA[Ninjatrader]]></category>
		<category><![CDATA[Ninjascript]]></category>
		<category><![CDATA[NinjaTrader]]></category>
		<guid isPermaLink="false">http://patternsmart.com/wp/?p=514</guid>

					<description><![CDATA[You can create user defined methods (global methods or functions) that can be accessed by all custom indicators and strategies. User defined methods should ONLY be created if you intend to re-use these methods over and over again across different custom indicators or strategies. Otherwise, just code your method logic directly into your indicator or [&#8230;]]]></description>
		
					<wfw:commentRss>https://patternsmart.com/wp/user-defined-methods-in-ninjatrader-indicator-and-strategy/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Store all series values instead of only the last 256 values in Ninjascript</title>
		<link>https://patternsmart.com/wp/store-all-series-values-instead-of-only-the-last-256-values-in-ninjascript/</link>
					<comments>https://patternsmart.com/wp/store-all-series-values-instead-of-only-the-last-256-values-in-ninjascript/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Wed, 22 Feb 2017 03:20:47 +0000</pubDate>
				<category><![CDATA[Ninjatrader]]></category>
		<category><![CDATA[Ninjascript]]></category>
		<guid isPermaLink="false">http://patternsmart.com/wp/?p=512</guid>

					<description><![CDATA[protected override void Initialize() { // Store all series values instead of only the last 256 values MaximumBarsLookBack = MaximumBarsLookBack.Infinite; } This might be very useful for some indicators, especially those need to use more than 256 bars&#8217; data.]]></description>
		
					<wfw:commentRss>https://patternsmart.com/wp/store-all-series-values-instead-of-only-the-last-256-values-in-ninjascript/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>debugging the behavior of your orders in Ninjatrader NT7</title>
		<link>https://patternsmart.com/wp/debugging-the-behavior-of-your-orders-in-ninjatrader-nt7/</link>
					<comments>https://patternsmart.com/wp/debugging-the-behavior-of-your-orders-in-ninjatrader-nt7/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Wed, 22 Feb 2017 03:18:01 +0000</pubDate>
				<category><![CDATA[Ninjatrader]]></category>
		<category><![CDATA[Ninjascript]]></category>
		<guid isPermaLink="false">http://patternsmart.com/wp/?p=508</guid>

					<description><![CDATA[Sometimes the orders are not working as we expect. So we need to track them to see what&#8217;s going on there. TraceOrders is a useful property when debugging the behavior of your orders. With the use of this property, you can track orders placed, amended, and cancelled. The traces displayed in the NinjaScript Output window [&#8230;]]]></description>
		
					<wfw:commentRss>https://patternsmart.com/wp/debugging-the-behavior-of-your-orders-in-ninjatrader-nt7/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>The parameter barsAgo may not work in some function in Ninjatrader Ninjascript</title>
		<link>https://patternsmart.com/wp/the-parameter-barsago-may-not-work-in-some-function-in-ninjatrader-ninjascript/</link>
					<comments>https://patternsmart.com/wp/the-parameter-barsago-may-not-work-in-some-function-in-ninjatrader-ninjascript/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Wed, 22 Feb 2017 02:49:19 +0000</pubDate>
				<category><![CDATA[Ninjatrader]]></category>
		<category><![CDATA[Ninjascript]]></category>
		<category><![CDATA[NinjaTrader]]></category>
		<guid isPermaLink="false">http://patternsmart.com/wp/?p=500</guid>

					<description><![CDATA[For example: DrawText(string tag, string text, int barsAgo, double y, Color color) protected override void OnBarUpdate() {          DrawText(&#8220;tag1&#8221;, &#8220;Text to draw&#8221;, 10, 1000, Color.Black); } The code above will get nothing to show, unless we check first. protected override void OnBarUpdate()         { if(CurrentBar &#60;= 10) return ; DrawText(&#8220;tag1&#8221;, &#8220;Text to draw&#8221;, 10, 1000, Color.Black); } The code above is [&#8230;]]]></description>
		
					<wfw:commentRss>https://patternsmart.com/wp/the-parameter-barsago-may-not-work-in-some-function-in-ninjatrader-ninjascript/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Super Scalper indicator custom NinjaTrader NT8 indicator</title>
		<link>https://patternsmart.com/wp/super-scalper-indicator-for-ninjatrader-nt8/</link>
					<comments>https://patternsmart.com/wp/super-scalper-indicator-for-ninjatrader-nt8/#comments</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sun, 25 Dec 2016 09:23:44 +0000</pubDate>
				<category><![CDATA[Indicator]]></category>
		<category><![CDATA[Ninjatrader]]></category>
		<category><![CDATA[indicator]]></category>
		<category><![CDATA[Ninjascript]]></category>
		<category><![CDATA[NinjaTrader]]></category>
		<category><![CDATA[nt8]]></category>
		<category><![CDATA[Super Scalper]]></category>
		<guid isPermaLink="false">http://patternsmart.com/wp/?p=403</guid>

					<description><![CDATA[Just converted this Super Scalper indicator to ninjatrader NT8 Super Scalping is the essence of the forex indicator to transform the accumulated history data. Super Scalping provides for an opportunity to detect various peculiarities and patterns in price dynamics which are invisible to the naked eye. Based on this information, traders can assume further price [&#8230;]]]></description>
		
					<wfw:commentRss>https://patternsmart.com/wp/super-scalper-indicator-for-ninjatrader-nt8/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
	</channel>
</rss>
