File size: 540 Bytes
16574e7
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
��from fastapi import FastAPI
from pattern_analyzer import PatternAnalyzer
from indicator_analyzer import IndicatorAnalyzer
from chart_maker import ChartMaker

app = FastAPI()

@app.get('/')
def root():
    return {'status': 'online', 'service': 'Pattern Analysis API'}