{"id":213385,"date":"2026-06-18T10:18:48","date_gmt":"2026-06-18T09:18:48","guid":{"rendered":"https:\/\/www.fersanmito.com\/news\/?p=213385"},"modified":"2026-06-18T10:20:56","modified_gmt":"2026-06-18T09:20:56","slug":"ninjatrader-8-i-velas-volumetricas","status":"publish","type":"post","link":"https:\/\/www.fersanmito.com\/news\/ninjatrader-8-i-velas-volumetricas\/","title":{"rendered":"NinjaTrader 8 i velas volumetricas"},"content":{"rendered":"\n<p id=\"viewer-5ooyi11726\">Las <strong>velas volum\u00e9tricas<\/strong> ofrecen informaci\u00f3n detallada sobre la actividad del mercado en cada nivel de precio, es importante agrupar las velas en un grupo de 4 Ticks como m\u00ednimo sino la informaci\u00f3n es demasiada para la vista humana:<\/p>\n\n\n\n<p>Que buscamos &#8230; <\/p>\n\n\n<a class=\"wp-block-read-more\" href=\"https:\/\/www.fersanmito.com\/news\/ninjatrader-8-i-velas-volumetricas\/\" target=\"_self\">Read more<span class=\"screen-reader-text\">: NinjaTrader 8 i velas volumetricas<\/span><\/a>\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Identificar zonas de alta y baja liquidez<\/strong>. (este es un punto que lo podriamos llamar imbalance), la decisi\u00f3n m\u00e1s dificil.<\/li>\n\n\n\n<li><strong>Visualizar la presi\u00f3n de compra y venta en tiempo real<\/strong>.<\/li>\n\n\n\n<li><strong>Optimizar la toma de decisiones con datos m\u00e1s precisos<\/strong>.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p>Que nos permite  <a href=\"https:\/\/ninjatrader.com\/\">Ninjatrader8<\/a> de sus velas Volumetricas, una infinidad de datos que luego podremos usar para crear nuestro propio Indicador, o una Estrategia clara para conseguir un peque\u00f1o robot, como el que ya tenemos creados de FSMT Diamond.<\/p>\n\n\n\n<p>Con diferentes combinaciones vamos a crear condiciones que nos permiten saber que esta ocurriendo en el mercado, yo principalmente las que m\u00e1s uso, las que son una clara tendencia, sin fisuras, el Institucional deja su huella, normalmente siempre hay un PullBack pero como siempre hay que pensar que no solo esta la intenci\u00f3n del Institucional, sino el rompimiento de las entradas de los Robots, por eso es importante tener claro los Imbalances, las tomas de Liquidez etc&#8230; y un minimo de presi\u00f3n sino la estrategia se convierte en una entrada sobre otra entrada para buscar STOPS o entradas fallidas.<\/p>\n\n\n\n<p>Las IA o las que nosotros conoces no llegan a lo que las grandes Instituciones tienen, con una visi\u00f3n m\u00e1s clara de las News y del Order Flow, ya que nosotros buscamos identificar zonas de Elliot, WickOff o Analisis T\u00e9cnico puro, ellos solo buscan OrderFlow, para luego seguir con la estructura definida.<\/p>\n\n\n\n<p>Siempre abierto a cualquier aclaraci\u00f3n, usar el contacto de la web con honestidad.<\/p>\n\n\n\n<p><a href=\"https:\/\/ninjatrader.com\/es\/support\/helpguides\/nt8\/index.html?order_flow_volumetric_bars.htm\">https:\/\/ninjatrader.com\/es\/support\/helpguides\/nt8\/index.html?order_flow_volumetric_bars.htm<\/a><\/p>\n\n\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>protected&nbsp;override&nbsp;void&nbsp;OnBarUpdate()<br>{<br>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;if&nbsp;(Bars&nbsp;==&nbsp;null)<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;return;<br>&nbsp; &nbsp; &nbsp; &nbsp;<\/p>\n\n\n\n<p>&nbsp; &nbsp; &nbsp; &nbsp;\/\/ This sample assumes the Volumetric series is the primary DataSeries on the chart, if you would want to add a Volumetric series to a &nbsp;<\/p>\n\n\n\n<p>&nbsp; &nbsp; &nbsp; &nbsp;\/\/ script, you could call AddVolumetric() in State.Configure and then for example use<br>&nbsp; &nbsp; &nbsp; &nbsp;\/\/ NinjaTrader.NinjaScript.BarsTypes.VolumetricBarsType barsType = BarsArray[1].BarsType as<\/p>\n\n\n\n<p>&nbsp; &nbsp; &nbsp; &nbsp;\/\/ NinjaTrader.NinjaScript.BarsTypes.VolumetricBarsType;<\/p>\n\n\n\n<p>&nbsp; &nbsp; &nbsp; &nbsp; NinjaTrader.NinjaScript.BarsTypes.VolumetricBarsType&nbsp;barsType&nbsp;=&nbsp;Bars.BarsSeries.BarsType&nbsp;as&nbsp;&nbsp; &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;NinjaTrader.NinjaScript.BarsTypes.VolumetricBarsType;<br>&nbsp; &nbsp; &nbsp; &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;if&nbsp;(barsType&nbsp;==&nbsp;null)<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;return;<\/p>\n\n\n\n<p>&nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;try<br>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;{<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;double&nbsp;price;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;Print(&#8220;=========================================================================&#8221;);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;Print(&#8220;Bar: &#8221;&nbsp;+&nbsp;CurrentBar);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;Print(&#8220;Trades: &#8221;&nbsp;+&nbsp;barsType.Volumes[CurrentBar].Trades);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;Print(&#8220;Total Volume: &#8221;&nbsp;+&nbsp;barsType.Volumes[CurrentBar].TotalVolume);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;Print(&#8220;Total Buying Volume: &#8221;&nbsp;+&nbsp;barsType.Volumes[CurrentBar].TotalBuyingVolume);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;Print(&#8220;Total Selling Volume: &#8221;&nbsp;+&nbsp;barsType.Volumes[CurrentBar].TotalSellingVolume);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;Print(&#8220;Delta for bar: &#8221;&nbsp;+&nbsp;barsType.Volumes[CurrentBar].BarDelta);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;Print(&#8220;Delta for bar (%): &#8221;&nbsp;+&nbsp;barsType.Volumes[CurrentBar].GetDeltaPercent());<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;Print(&#8220;Delta for Close: &#8221;&nbsp;+&nbsp;barsType.Volumes[CurrentBar].GetDeltaForPrice(Close[0]));<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;Print(&#8220;Ask for Close: &#8221;&nbsp;+&nbsp;barsType.Volumes[CurrentBar].GetAskVolumeForPrice(Close[0]));<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;Print(&#8220;Bid for Close: &#8221;&nbsp;+&nbsp;barsType.Volumes[CurrentBar].GetBidVolumeForPrice(Close[0]));<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;Print(&#8220;Volume for Close: &#8221;&nbsp;+&nbsp;barsType.Volumes[CurrentBar].GetTotalVolumeForPrice(Close[0]));<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;Print(&#8220;Maximum Ask: &#8221;&nbsp;+&nbsp;barsType.Volumes[CurrentBar].GetMaximumVolume(true,&nbsp;out&nbsp;price)&nbsp;+&nbsp;&#8221; at price: &#8221;&nbsp;+&nbsp;price);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;Print(&#8220;Maximum Bid: &#8221;&nbsp;+&nbsp;barsType.Volumes[CurrentBar].GetMaximumVolume(false,&nbsp;out&nbsp;price)&nbsp;+&nbsp;&#8221; at price: &#8221;&nbsp;+&nbsp;price);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;Print(&#8220;Maximum Combined: &#8221;&nbsp;+&nbsp;barsType.Volumes[CurrentBar].GetMaximumVolume(null,&nbsp;out&nbsp;price)&nbsp;+&nbsp;&#8221; at price: &#8221;&nbsp;+&nbsp;price);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;Print(&#8220;Maximum Positive Delta: &#8221;&nbsp;+&nbsp;barsType.Volumes[CurrentBar].GetMaximumPositiveDelta());<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;Print(&#8220;Maximum Negative Delta: &#8221;&nbsp;+&nbsp;barsType.Volumes[CurrentBar].GetMaximumNegativeDelta());<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;Print(&#8220;Max seen delta (bar): &#8221;&nbsp;+&nbsp;barsType.Volumes[CurrentBar].MaxSeenDelta);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;Print(&#8220;Min seen delta (bar): &#8221;&nbsp;+&nbsp;barsType.Volumes[CurrentBar].MinSeenDelta);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;Print(&#8220;Cumulative delta (bar): &#8221;&nbsp;+&nbsp;barsType.Volumes[CurrentBar].CumulativeDelta);<br>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;}<br>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;catch{}<br>}<\/p>\n<\/blockquote>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Las velas volum\u00e9tricas ofrecen informaci\u00f3n detallada sobre la actividad del mercado en cada nivel de precio, es importante agrupar las velas en un grupo de 4 Ticks como m\u00ednimo sino la informaci\u00f3n es demasiada para la vista humana: Que buscamos &#8230; Que nos permite Ninjatrader8 de sus velas Volumetricas, una infinidad de datos que luego &hellip; <a href=\"https:\/\/www.fersanmito.com\/news\/ninjatrader-8-i-velas-volumetricas\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;NinjaTrader 8 i velas volumetricas&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"aside","meta":{"pagelayer_contact_templates":[],"_pagelayer_content":"","footnotes":""},"categories":[38],"tags":[91,81,97,98,96],"class_list":["post-213385","post","type-post","status-publish","format-aside","hentry","category-blog","tag-ninjatrader","tag-orderflow","tag-profile","tag-velas","tag-volumetricas","post_format-post-format-aside"],"_links":{"self":[{"href":"https:\/\/www.fersanmito.com\/news\/wp-json\/wp\/v2\/posts\/213385","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.fersanmito.com\/news\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.fersanmito.com\/news\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.fersanmito.com\/news\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.fersanmito.com\/news\/wp-json\/wp\/v2\/comments?post=213385"}],"version-history":[{"count":3,"href":"https:\/\/www.fersanmito.com\/news\/wp-json\/wp\/v2\/posts\/213385\/revisions"}],"predecessor-version":[{"id":213409,"href":"https:\/\/www.fersanmito.com\/news\/wp-json\/wp\/v2\/posts\/213385\/revisions\/213409"}],"wp:attachment":[{"href":"https:\/\/www.fersanmito.com\/news\/wp-json\/wp\/v2\/media?parent=213385"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.fersanmito.com\/news\/wp-json\/wp\/v2\/categories?post=213385"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.fersanmito.com\/news\/wp-json\/wp\/v2\/tags?post=213385"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}