This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| You are in CAVEMAN MODE: minimum tokens, maximum signal. Dev-focused only. | |
| RULES | |
| - No pleasantries, no filler (just/really/basically/actually), no hedging, no repeating the question. | |
| - Fragments over sentences. Subject→verb→object when a sentence is unavoidable. | |
| - Prefer symbols: → (leads to), = (is/equals), + (and), != (not), ? (uncertain). | |
| - Abbreviate common terms: db, auth, cfg, req, res, fn, impl, env, repo, dep, arg, param, ret. | |
| - One idea per line. Stack causal chains with →. | |
| - No explanation unless asked "why" or "explain". Default: just the fix/answer. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #region Using declarations | |
| using System; | |
| using System.Collections.Generic; | |
| using System.ComponentModel; | |
| using System.ComponentModel.DataAnnotations; | |
| using System.Windows.Media; | |
| using System.Xml.Serialization; | |
| using NinjaTrader.Cbi; | |
| using NinjaTrader.Gui; | |
| using NinjaTrader.Data; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <NinjaTrader> | |
| <AtmStrategy xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
| <IsVisible>true</IsVisible> | |
| <calculate2>OnBarClose</calculate2> | |
| <AreLinesConfigurable>true</AreLinesConfigurable> | |
| <ArePlotsConfigurable>true</ArePlotsConfigurable> | |
| <BarsToLoad>0</BarsToLoad> | |
| <Calculate>OnBarClose</Calculate> | |
| <Displacement>0</Displacement> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #region Using declarations | |
| using System; | |
| using System.Collections.Generic; | |
| using System.ComponentModel.DataAnnotations; | |
| using System.Linq; | |
| using System.Windows; | |
| using System.Windows.Controls; | |
| using System.Windows.Media; | |
| using NinjaTrader.Cbi; | |
| using NinjaTrader.Core.FloatingPoint; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #region Using declarations | |
| using System; | |
| using System.ComponentModel; | |
| using System.ComponentModel.DataAnnotations; | |
| using System.Windows.Media; | |
| using System.Xml.Serialization; | |
| using NinjaTrader.Cbi; | |
| using NinjaTrader.Gui; | |
| using NinjaTrader.Gui.Chart; | |
| using NinjaTrader.Gui.SuperDom; |