sql-synergy
Version:
Synergy Wave TA
27 lines (26 loc) • 818 B
TypeScript
import { IConstants } from './IConstants';
import { MSQuote } from './MSQuote';
export declare class SynergySystem implements IConstants {
oMSQuote: any;
i3P: number;
i3I: number;
constructor(oMSQuote: MSQuote);
oPC: any;
oStep2: any;
oStep3: any;
oStep4: any;
oStep5: any;
oStep6: any;
isLevelII(): boolean;
isLevelI(): boolean;
iSmallerChartDate: number;
check6Steps(i3P: number, i3I: number): boolean;
getStep2Date(): string;
getStep3Date(): string;
getStep4Date(): string;
getStep5Date(): string;
getStep6Date(): string;
hasAllSteps(iDay: number): boolean;
getSmallerChartDateIndex(oPC: MSQuote, iBigChartIndex: number, oSC: MSQuote): number;
getBigChartIndex(oPC: MSQuote, iSmallChartIndex: number, oBPC: MSQuote): number;
}