rsi 추가

This commit is contained in:
2025-08-24 22:00:11 +09:00
parent 7cf6f367ea
commit f5059ed0ce
8 changed files with 404 additions and 34 deletions

4
types/imports.d.ts vendored
View File

@@ -10,8 +10,10 @@ declare global {
const asyncComputed: typeof import('@vueuse/core')['asyncComputed']
const autoResetRef: typeof import('@vueuse/core')['autoResetRef']
const calculateBollingerBands: typeof import('../src/utils/meter')['calculateBollingerBands']
const calculateCRO: typeof import('../src/utils/meter')['calculateCRO']
const calculateEMA: typeof import('../src/utils/meter')['calculateEMA']
const calculateMACD: typeof import('../src/utils/meter')['calculateMACD']
const calculateRSI: typeof import('../src/utils/meter')['calculateRSI']
const computed: typeof import('vue')['computed']
const computedAsync: typeof import('@vueuse/core')['computedAsync']
const computedEager: typeof import('@vueuse/core')['computedEager']
@@ -36,6 +38,7 @@ declare global {
const defineComponent: typeof import('vue')['defineComponent']
const eagerComputed: typeof import('@vueuse/core')['eagerComputed']
const effectScope: typeof import('vue')['effectScope']
const entrySignals: typeof import('../src/utils/cro')['entrySignals']
const extendRef: typeof import('@vueuse/core')['extendRef']
const getCandleList: typeof import('../src/utils/api')['getCandleList']
const getCurrentInstance: typeof import('vue')['getCurrentInstance']
@@ -95,6 +98,7 @@ declare global {
const shallowReactive: typeof import('vue')['shallowReactive']
const shallowReadonly: typeof import('vue')['shallowReadonly']
const shallowRef: typeof import('vue')['shallowRef']
const swingSignal: typeof import('../src/utils/sig')['swingSignal']
const syncRef: typeof import('@vueuse/core')['syncRef']
const syncRefs: typeof import('@vueuse/core')['syncRefs']
const templateRef: typeof import('@vueuse/core')['templateRef']