|
| 1 | +# A Tour of the User Interface |
| 2 | + |
| 3 | +While Stochastix is fully operable from the command line, it also comes with a rich, modern web interface to help you visualize data and results. |
| 4 | + |
| 5 | +After starting the environment (see the [Getting Started](./installation.md) guide), you can access the UI by navigating to **https://localhost** in your web browser. |
| 6 | + |
| 7 | +This page provides a quick visual tour of the main sections of the application. |
| 8 | + |
| 9 | +## Data Management |
| 10 | + |
| 11 | +The Data Management page is the central hub for downloading and inspecting historical market data. From here you can view all available data, initiate new downloads from an exchange, and inspect the integrity of local files. |
| 12 | + |
| 13 | +[](/screenshots/data_management.jpg) |
| 14 | + |
| 15 | +## Data Validation |
| 16 | + |
| 17 | +From the Data Management page, you can inspect any downloaded `.stchx` data file. This opens a modal window that displays the file's header metadata and provides a full data integrity report, checking for gaps, duplicates, or out-of-order records. |
| 18 | + |
| 19 | +[](/screenshots/data_validation.jpg) |
| 20 | + |
| 21 | +## New Backtest |
| 22 | + |
| 23 | +The New Backtest page allows you to visually configure and launch a backtest for any available strategy. It dynamically generates form fields for all the `#[Input]` parameters defined in your strategy class, making it easy to experiment with different settings. |
| 24 | + |
| 25 | +[](/screenshots/new_backtest.jpg) |
| 26 | + |
| 27 | +## Backtest Results |
| 28 | + |
| 29 | +The Backtest Results page provides a comprehensive and interactive overview of a completed backtest run, broken down into several key sections. |
| 30 | + |
| 31 | +### Summary & Performance Charts |
| 32 | + |
| 33 | +The top of the page displays the most important, high-level performance metrics of the strategy alongside interactive charts for visualizing the portfolio's equity curve, drawdown, and other time-series metrics. |
| 34 | + |
| 35 | +[](/screenshots/backtest_summary.jpg) |
| 36 | +[](/screenshots/backtest_chart.jpg) |
| 37 | + |
| 38 | +### Visual Chart Analysis |
| 39 | + |
| 40 | +The main chart allows for deep visual analysis, overlaying your strategy's indicators and plotting the exact entry and exit points of each trade directly on the price candles. You can zoom, pan, and inspect each trade in detail. |
| 41 | + |
| 42 | +[](/screenshots/backtest_visual_analysis.jpg) |
| 43 | + |
| 44 | +### Trades Log & Analysis |
| 45 | + |
| 46 | +Below the charts, detailed tables provide a log of every closed trade and a performance breakdown by the `enterTags` and `exitTags` assigned in your strategy. |
| 47 | + |
| 48 | +[](/screenshots/backtest_results.jpg) |
0 commit comments