import type { NextPage } from 'next' import Head from 'next/head' import Image from 'next/image' import styles from '../styles/Home.module.css' import TradingViewChart from '../src/TradingViewChart'; // This is for react-financial-chart // import StockChart from '../src/StockChart'; const Home: NextPage = () => { return (
Back-Test Report

Back-test Report

) } export default Home