initial charts / backtest

This commit is contained in:
Boki 2025-07-02 19:58:43 -04:00
parent 11c24b2280
commit 1b9010ebf4
37 changed files with 3888 additions and 23 deletions

View file

@ -8,6 +8,8 @@ import {
HomeIcon,
PresentationChartLineIcon,
ServerStackIcon,
BeakerIcon,
CurrencyDollarIcon,
} from '@heroicons/react/24/outline';
export interface NavigationItem {
@ -19,10 +21,18 @@ export interface NavigationItem {
export const navigation: NavigationItem[] = [
{ name: 'Dashboard', href: '/dashboard', icon: HomeIcon },
{ name: 'Exchanges', href: '/exchanges', icon: BuildingLibraryIcon },
{
name: 'Market Data',
icon: CurrencyDollarIcon,
children: [
{ name: 'Charts', href: '/charts', icon: ChartBarIcon },
{ name: 'Exchanges', href: '/exchanges', icon: BuildingLibraryIcon },
],
},
{ name: 'Portfolio', href: '/portfolio', icon: ChartBarIcon },
{ name: 'Strategies', href: '/strategies', icon: DocumentTextIcon },
{ name: 'Analytics', href: '/analytics', icon: PresentationChartLineIcon },
{ name: 'Backtest', href: '/backtest', icon: BeakerIcon },
{
name: 'System',
icon: ServerStackIcon,

View file

@ -1,4 +1,5 @@
import {
BeakerIcon,
BuildingOfficeIcon,
ChartBarIcon,
CogIcon,
@ -27,6 +28,12 @@ export const navigation = [
icon: ChartBarIcon,
current: false,
},
{
name: 'Backtest',
href: '/backtest',
icon: BeakerIcon,
current: false,
},
{
name: 'Exchanges',
href: '/exchanges',