3 Commits

Author SHA1 Message Date
kenji 0fb7553ebf fix(tickrs): change chart_type to lowercase 'candle' 2025-12-30 10:41:51 -06:00
kenji ad6a4b0021 fix(tickrs): correct invalid time_frame config value 2025-12-30 10:41:06 -06:00
kenji df56ff3579 feat(apps): add tickrs stock TUI with custom watchlist 2025-12-30 10:39:14 -06:00
2 changed files with 22 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [ tickrs ];
xdg.configFile."tickrs/config.yml".text = ''
symbols:
- NVDA
- AMD
- LAC
- ONDS
- SLV
- GOOGL
- TSM
show_volumes: true
show_x_axis: true
show_y_axis: true
time_frame: Day1
update_frequency: 1
chart_type: candle
'';
}
+1
View File
@@ -2,5 +2,6 @@
imports = [
../../apps/btop
../../apps/jellyfin
../../apps/tickrs
];
}