Ensure advanced strategy template is runnable

This commit is contained in:
Matthias
2022-05-06 06:30:35 +02:00
parent d11c44940e
commit 5b3eaa3003
2 changed files with 8 additions and 6 deletions

View File

@@ -4,7 +4,9 @@
# --- Do not remove these libs ---
import numpy as np # noqa
import pandas as pd # noqa
from pandas import DataFrame
from pandas import DataFrame # noqa
from datetime import datetime # noqa
from typing import Optional # noqa
from freqtrade.strategy import (BooleanParameter, CategoricalParameter, DecimalParameter,
IStrategy, IntParameter)