This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//@version=5 | |
strategy("SUPERTREND", overlay=true, initial_capital = 1000, currency = "USD", default_qty_type = strategy.cash, default_qty_value = 1000, commission_value = 0.04, calc_on_every_tick=true) | |
// Timeframe=30m, smoothing period = 130 | |
// CORAL trend indicator, used as "global trend" | |
src2=close | |
sm =input(21, title="Smoothing Period") | |
cd = input(0.4, title="Constant D") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
import 'mjpeg_view.dart'; | |
void main() => runApp(MyApp()); | |
class MyApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( | |
title: 'Flutter Demo', |