Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
12690a7
fix(connections): keep the scrollbar off the status dots
kirillDevPro Sep 3, 2026
057982c
fix(report): draw a real icon on the column picker instead of tofu
kirillDevPro Sep 3, 2026
7a19d8a
fix(report): print the spent column as money, not raw 8-decimal floats
kirillDevPro Sep 3, 2026
d7c6f77
fix(chart): put the whole chart tab row back on one surface
kirillDevPro Sep 3, 2026
028091a
feat(report): state realized profit as a percent of the average order
kirillDevPro Sep 3, 2026
c32da93
fix(analytics): colour each KPI delta by what is good for that metric
kirillDevPro Sep 3, 2026
7eea403
fix(assets): size the wallets roster to the core names it must show
kirillDevPro Sep 3, 2026
bf428f5
fix(strategies): stop remembering the Auto rail's auto-expanded core
kirillDevPro Sep 3, 2026
819ab0e
feat(connections): make the Connections table's chrome explain itself
kirillDevPro Sep 3, 2026
ed3bdc7
feat(detects): say why the feed is empty instead of a blank pane
kirillDevPro Sep 3, 2026
5135f34
feat(orders): say what the footer's real and emulated counts are
kirillDevPro Sep 3, 2026
aed64d8
feat(strategies): line the tree's core counters up in a right column
kirillDevPro Sep 3, 2026
135122e
fix(ui): draw one real icon on every column picker instead of tofu
kirillDevPro Sep 3, 2026
b62a495
fix(analytics): stop the chart value labels from colliding
kirillDevPro Sep 3, 2026
8b86ef3
style(strategies): rustfmt the strategies tests
kirillDevPro Sep 3, 2026
739e5e7
chore(deps): bump MoonUI to 2277810d (last row clear of the horizonta…
kirillDevPro Sep 3, 2026
4277c27
chore(deps): keep unrelated dependency edges frozen in the MoonUI bump
kirillDevPro Sep 3, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 23 additions & 23 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/moon-core/src/config/layout.rs
Original file line number Diff line number Diff line change
Expand Up @@ -772,7 +772,7 @@ pub struct WindowLayout {
/// hand-edited, and one wrongly typed value must not cost the user the rest of the file.
#[serde(default, deserialize_with = "de_lenient")]
pub analytics_strategy_mask: Option<String>,
/// Bitmask of the visible columns in the Tuning strategy list (the selector).
/// Bitmask of the visible columns in the Tuning strategy list (the column selector).
/// None = default (all columns).
///
/// Version 2 of the key. The bit layout is positional (metric columns sit at
Expand Down
5 changes: 3 additions & 2 deletions crates/moon-core/src/db/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,9 @@ pub mod valuation;

pub use dates::{fmt_unix, fmt_unix_date, fmt_unix_secs, parse_ymd};
pub use quote::{
OpenPositions, ProfitScope, ProfitUnit, QuoteBreakdown, QuoteCurrency, QuoteScope, QuoteTotal,
QuoteVolume, TradedVolume, UsdtTotal, ValuationCoverage,
AverageOrderReturn, EntrySpend, OpenPositions, ProfitScope, ProfitUnit, QuoteBreakdown,
QuoteCurrency, QuoteScope, QuoteSpend, QuoteTotal, QuoteVolume, TradedVolume, UsdtTotal,
ValuationCoverage,
};
pub use read_cancel::{ReadCancellation, with_read_cancellation};
pub use read_fail::{FailKind, ReadFail, ReadResult};
Expand Down
Loading