From 7775d6caaf0234f8d19e84c6182db0c8520f003a Mon Sep 17 00:00:00 2001 From: Sean Date: Wed, 18 Feb 2026 17:56:38 -0500 Subject: [PATCH] Add --- Views/BollingerBandPositionView.xaml | 187 ++++++++++++++++++++++++ Views/BollingerBandPositionView.xaml.cs | 27 ++++ 2 files changed, 214 insertions(+) create mode 100644 Views/BollingerBandPositionView.xaml create mode 100644 Views/BollingerBandPositionView.xaml.cs diff --git a/Views/BollingerBandPositionView.xaml b/Views/BollingerBandPositionView.xaml new file mode 100644 index 0000000..fdf7495 --- /dev/null +++ b/Views/BollingerBandPositionView.xaml @@ -0,0 +1,187 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Views/BollingerBandPositionView.xaml.cs b/Views/BollingerBandPositionView.xaml.cs new file mode 100644 index 0000000..a65e732 --- /dev/null +++ b/Views/BollingerBandPositionView.xaml.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; + +namespace TradeBlotter.Views +{ + /// + /// Interaction logic for BollingerBandPositionView.xaml + /// + public partial class BollingerBandPositionView : UserControl + { + public BollingerBandPositionView() + { + InitializeComponent(); + } + } +}