double LowestPrice(string symbol, ENUM_TIMEFRAMES tf, int type, int period, int shift)
symbol
通貨ペア
tf
type
4本値の種類(MODE_OPEN:始値、MODE_HIGH:高値、MODE_LOW:安値、MODE_CLOSE:終値)
period
最安値を探索するバーの数
shift
最安値を探索する最初のバーの位置
最安値
symbol、tfのチャート上でshiftからperiod本の期間におけるtypeの最安値を返す関数です。
MyOrderSend(OP_BUYLIMIT, Lots, LowestPrice(_Symbol, 0, MODE_LOW, 5, 1));