Benny Neugebauer

Results 174 comments of Benny Neugebauer

## Zero-Lag Dow Theory Trend Detector ```ts type PriceData = { high: number; low: number }; type Trend = 'Uptrend' | 'Downtrend' | 'Neutral'; class RealTimeDowTrend { private data: PriceData[]...

Would using [larger Ubuntu runners](https://docs.github.com/en/actions/how-tos/manage-runners/larger-runners/manage-larger-runners#adding-a-larger-runner-to-an-organization) help cut down the 5 minute runtime?

@jannikkeye, are you still maintaining this library?

Are imports like `import {Options} from 'highcharts/highcharts.src';` intentional or is there a better way to import the `Options`?