@one_deploy/sdk 1.2.1 → 1.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/dist/{ForexPoolDataGenerator-eUgwsU_B.d.ts → ForexPoolDataGenerator-B3DCN6_i.d.ts} +1 -1
  2. package/dist/{ForexPoolDataGenerator--__twRwl.d.mts → ForexPoolDataGenerator-DWVj6mGW.d.mts} +1 -1
  3. package/dist/{OneForexTradeHistory-TlKxjbFF.d.ts → OneForexTradeHistory-BMbwdkMm.d.ts} +1 -1
  4. package/dist/{OneForexTradeHistory-iDySMcw0.d.mts → OneForexTradeHistory-DACfkJQF.d.mts} +1 -1
  5. package/dist/components/index.d.mts +2 -2
  6. package/dist/components/index.d.ts +2 -2
  7. package/dist/config/index.d.mts +1 -1
  8. package/dist/config/index.d.ts +1 -1
  9. package/dist/{console-BfTMA7ah.d.mts → console-BoAIxikK.d.mts} +28 -1
  10. package/dist/{console-BfTMA7ah.d.ts → console-BoAIxikK.d.ts} +28 -1
  11. package/dist/hooks/index.d.mts +2 -2
  12. package/dist/hooks/index.d.ts +2 -2
  13. package/dist/hooks/index.js +385 -24
  14. package/dist/hooks/index.js.map +1 -1
  15. package/dist/hooks/index.mjs +385 -24
  16. package/dist/hooks/index.mjs.map +1 -1
  17. package/dist/index.d.mts +4 -4
  18. package/dist/index.d.ts +4 -4
  19. package/dist/index.js +385 -24
  20. package/dist/index.js.map +1 -1
  21. package/dist/index.mjs +385 -24
  22. package/dist/index.mjs.map +1 -1
  23. package/dist/providers/index.d.mts +1 -1
  24. package/dist/providers/index.d.ts +1 -1
  25. package/dist/react-native.d.mts +4 -4
  26. package/dist/react-native.d.ts +4 -4
  27. package/dist/react-native.js +356 -22
  28. package/dist/react-native.js.map +1 -1
  29. package/dist/react-native.mjs +354 -23
  30. package/dist/react-native.mjs.map +1 -1
  31. package/dist/services/index.d.mts +2 -2
  32. package/dist/services/index.d.ts +2 -2
  33. package/dist/services/index.js +225 -22
  34. package/dist/services/index.js.map +1 -1
  35. package/dist/services/index.mjs +225 -22
  36. package/dist/services/index.mjs.map +1 -1
  37. package/dist/types/index.d.mts +1 -1
  38. package/dist/types/index.d.ts +1 -1
  39. package/dist/{useForexTrading-ZgW_G40Q.d.ts → useForexTrading-BB4eUlHO.d.ts} +1 -1
  40. package/dist/{useForexTrading-BleeSor8.d.mts → useForexTrading-xJwkxnhd.d.mts} +1 -1
  41. package/package.json +1 -1
  42. package/src/react-native.ts +16 -1
  43. package/src/services/forex/BotSimulationEngine.ts +447 -19
  44. package/src/services/forex/index.ts +12 -1
@@ -927,9 +927,39 @@ var init_ForexSimulationEngine = __esm({
927
927
  // src/services/forex/BotSimulationEngine.ts
928
928
  var BotSimulationEngine_exports = {};
929
929
  __export(BotSimulationEngine_exports, {
930
+ INVESTMENT_CYCLES: () => INVESTMENT_CYCLES,
931
+ INVESTMENT_TIERS: () => INVESTMENT_TIERS,
930
932
  STRATEGY_PERSONALITIES: () => STRATEGY_PERSONALITIES,
931
- botSimulationEngine: () => botSimulationEngine
933
+ botSimulationEngine: () => botSimulationEngine,
934
+ calculateDailyYield: () => calculateDailyYield,
935
+ estimateReturns: () => estimateReturns
932
936
  });
937
+ function calculateDailyYield(strategy, tier, cycle) {
938
+ const baseYield = (strategy.dailyYieldMin + strategy.dailyYieldMax) / 2;
939
+ const tierBonuses = {
940
+ starter: 0,
941
+ basic: 0.02,
942
+ standard: 0.05,
943
+ premium: 0.08,
944
+ elite: 0.12,
945
+ vip: 0.15
946
+ };
947
+ const grossYield = baseYield * cycle.bonusMultiplier * (1 + tierBonuses[tier]);
948
+ const platformFee = grossYield * (cycle.profitSharePercent / 100);
949
+ const netYield = grossYield - platformFee;
950
+ return { grossYield, netYield, platformFee };
951
+ }
952
+ function estimateReturns(principal, strategy, tier, cycle) {
953
+ const { netYield, platformFee } = calculateDailyYield(strategy, tier, cycle);
954
+ const days = cycle.days || 30;
955
+ const dailyReturn = principal * (netYield / 100);
956
+ const totalReturn = dailyReturn * days;
957
+ const finalAmount = principal + totalReturn;
958
+ const platformProfit = principal * (platformFee / 100) * days;
959
+ const userProfit = totalReturn;
960
+ const apr = netYield * 365;
961
+ return { dailyReturn, totalReturn, finalAmount, platformProfit, userProfit, apr };
962
+ }
933
963
  function genId3() {
934
964
  return `log_${Date.now()}_${++idCounter2}`;
935
965
  }
@@ -950,17 +980,194 @@ function formatPrice(price) {
950
980
  if (price >= 1) return price.toFixed(3);
951
981
  return price.toFixed(5);
952
982
  }
953
- var STRATEGY_PERSONALITIES, PAIR_PRICES, CHAIN_INFO, NEWS_HEADLINES, idCounter2, BotSimulationEngine, botSimulationEngine;
983
+ var INVESTMENT_TIERS, INVESTMENT_CYCLES, STRATEGY_PERSONALITIES, PAIR_PRICES, CHAIN_INFO, NEWS_HEADLINES, idCounter2, BotSimulationEngine, botSimulationEngine;
954
984
  var init_BotSimulationEngine = __esm({
955
985
  "src/services/forex/BotSimulationEngine.ts"() {
986
+ INVESTMENT_TIERS = {
987
+ starter: {
988
+ id: "starter",
989
+ name: "Starter",
990
+ nameCn: "\u5165\u95E8\u7248",
991
+ minInvestment: 100,
992
+ maxInvestment: 999,
993
+ color: "#6B7280",
994
+ icon: "\u{1F331}"
995
+ },
996
+ basic: {
997
+ id: "basic",
998
+ name: "Basic",
999
+ nameCn: "\u57FA\u7840\u7248",
1000
+ minInvestment: 1e3,
1001
+ maxInvestment: 4999,
1002
+ color: "#3B82F6",
1003
+ icon: "\u{1F4CA}"
1004
+ },
1005
+ standard: {
1006
+ id: "standard",
1007
+ name: "Standard",
1008
+ nameCn: "\u6807\u51C6\u7248",
1009
+ minInvestment: 5e3,
1010
+ maxInvestment: 19999,
1011
+ color: "#10B981",
1012
+ icon: "\u{1F48E}"
1013
+ },
1014
+ premium: {
1015
+ id: "premium",
1016
+ name: "Premium",
1017
+ nameCn: "\u9AD8\u7EA7\u7248",
1018
+ minInvestment: 2e4,
1019
+ maxInvestment: 49999,
1020
+ color: "#8B5CF6",
1021
+ icon: "\u{1F451}"
1022
+ },
1023
+ elite: {
1024
+ id: "elite",
1025
+ name: "Elite",
1026
+ nameCn: "\u7CBE\u82F1\u7248",
1027
+ minInvestment: 5e4,
1028
+ maxInvestment: 99999,
1029
+ color: "#F59E0B",
1030
+ icon: "\u{1F3C6}"
1031
+ },
1032
+ vip: {
1033
+ id: "vip",
1034
+ name: "VIP",
1035
+ nameCn: "VIP\u4E13\u5C5E",
1036
+ minInvestment: 1e5,
1037
+ maxInvestment: Infinity,
1038
+ color: "#EF4444",
1039
+ icon: "\u{1F525}"
1040
+ }
1041
+ };
1042
+ INVESTMENT_CYCLES = [
1043
+ {
1044
+ id: "flexible",
1045
+ days: 0,
1046
+ name: "Flexible",
1047
+ nameCn: "\u7075\u6D3B\u671F",
1048
+ profitSharePercent: 30,
1049
+ // Platform 30%, User 70%
1050
+ bonusMultiplier: 1,
1051
+ earlyWithdrawPenalty: 0
1052
+ },
1053
+ {
1054
+ id: "week",
1055
+ days: 7,
1056
+ name: "7 Days",
1057
+ nameCn: "7\u5929\u671F",
1058
+ profitSharePercent: 25,
1059
+ // Platform 25%, User 75%
1060
+ bonusMultiplier: 1.1,
1061
+ earlyWithdrawPenalty: 5
1062
+ },
1063
+ {
1064
+ id: "biweek",
1065
+ days: 14,
1066
+ name: "14 Days",
1067
+ nameCn: "14\u5929\u671F",
1068
+ profitSharePercent: 22,
1069
+ // Platform 22%, User 78%
1070
+ bonusMultiplier: 1.2,
1071
+ earlyWithdrawPenalty: 8
1072
+ },
1073
+ {
1074
+ id: "month",
1075
+ days: 30,
1076
+ name: "30 Days",
1077
+ nameCn: "30\u5929\u671F",
1078
+ profitSharePercent: 20,
1079
+ // Platform 20%, User 80%
1080
+ bonusMultiplier: 1.35,
1081
+ earlyWithdrawPenalty: 10
1082
+ },
1083
+ {
1084
+ id: "quarter",
1085
+ days: 90,
1086
+ name: "90 Days",
1087
+ nameCn: "90\u5929\u671F",
1088
+ profitSharePercent: 15,
1089
+ // Platform 15%, User 85%
1090
+ bonusMultiplier: 1.5,
1091
+ earlyWithdrawPenalty: 15
1092
+ },
1093
+ {
1094
+ id: "halfyear",
1095
+ days: 180,
1096
+ name: "180 Days",
1097
+ nameCn: "180\u5929\u671F",
1098
+ profitSharePercent: 12,
1099
+ // Platform 12%, User 88%
1100
+ bonusMultiplier: 1.8,
1101
+ earlyWithdrawPenalty: 20
1102
+ },
1103
+ {
1104
+ id: "year",
1105
+ days: 365,
1106
+ name: "365 Days",
1107
+ nameCn: "365\u5929\u671F",
1108
+ profitSharePercent: 10,
1109
+ // Platform 10%, User 90%
1110
+ bonusMultiplier: 2,
1111
+ earlyWithdrawPenalty: 25
1112
+ }
1113
+ ];
956
1114
  STRATEGY_PERSONALITIES = [
1115
+ // ═══════════════════════════════════════════════════════════════════════════
1116
+ // CONSERVATIVE STRATEGIES (保守型) - Low risk, stable returns
1117
+ // ═══════════════════════════════════════════════════════════════════════════
1118
+ {
1119
+ id: "stable-yield-01",
1120
+ name: "Stable Yield",
1121
+ shortName: "STB",
1122
+ color: "#6B7280",
1123
+ scanIntervalMin: 8e4,
1124
+ scanIntervalMax: 12e4,
1125
+ tradeFrequency: 0.15,
1126
+ positionSizeMin: 5,
1127
+ positionSizeMax: 15,
1128
+ leverageMin: 1,
1129
+ leverageMax: 3,
1130
+ primaryIndicators: ["Bollinger", "Volume"],
1131
+ riskTolerance: "low",
1132
+ preferredPairs: ["BTC/USDT", "ETH/USDT"],
1133
+ rsiBias: 45,
1134
+ tier: "starter",
1135
+ dailyYieldMin: 0.15,
1136
+ dailyYieldMax: 0.25,
1137
+ description: "\u7A33\u5065\u6536\u76CA\u7B56\u7565\uFF0C\u4F4E\u98CE\u9669\u4F4E\u6CE2\u52A8\uFF0C\u9002\u5408\u65B0\u624B\u5165\u95E8",
1138
+ category: "conservative"
1139
+ },
1140
+ {
1141
+ id: "conservative-shield-01",
1142
+ name: "Conservative Shield",
1143
+ shortName: "CON",
1144
+ color: "#10B981",
1145
+ scanIntervalMin: 6e4,
1146
+ scanIntervalMax: 9e4,
1147
+ tradeFrequency: 0.25,
1148
+ positionSizeMin: 10,
1149
+ positionSizeMax: 20,
1150
+ leverageMin: 2,
1151
+ leverageMax: 5,
1152
+ primaryIndicators: ["Bollinger", "Volume", "RSI"],
1153
+ riskTolerance: "low",
1154
+ preferredPairs: ["BTC/USDT", "ETH/USDT"],
1155
+ rsiBias: 45,
1156
+ tier: "basic",
1157
+ dailyYieldMin: 0.25,
1158
+ dailyYieldMax: 0.4,
1159
+ description: "\u4FDD\u5B88\u9632\u5FA1\u7B56\u7565\uFF0C\u6CE8\u91CD\u8D44\u91D1\u5B89\u5168\uFF0C\u7A33\u5B9A\u6536\u76CA",
1160
+ category: "conservative"
1161
+ },
1162
+ // ═══════════════════════════════════════════════════════════════════════════
1163
+ // BALANCED STRATEGIES (平衡型) - Moderate risk, balanced returns
1164
+ // ═══════════════════════════════════════════════════════════════════════════
957
1165
  {
958
- id: "balanced-01",
1166
+ id: "balanced-alpha-01",
959
1167
  name: "Balanced Alpha",
960
1168
  shortName: "BAL",
961
1169
  color: "#3B82F6",
962
1170
  scanIntervalMin: 45e3,
963
- // 45-70s between cycles (slower for readability)
964
1171
  scanIntervalMax: 7e4,
965
1172
  tradeFrequency: 0.4,
966
1173
  positionSizeMin: 15,
@@ -970,33 +1177,91 @@ var init_BotSimulationEngine = __esm({
970
1177
  primaryIndicators: ["RSI", "MACD"],
971
1178
  riskTolerance: "medium",
972
1179
  preferredPairs: ["BTC/USDT", "ETH/USDT", "SOL/USDT"],
973
- rsiBias: 50
1180
+ rsiBias: 50,
1181
+ tier: "standard",
1182
+ dailyYieldMin: 0.4,
1183
+ dailyYieldMax: 0.65,
1184
+ description: "\u5E73\u8861\u578B\u7B56\u7565\uFF0C\u98CE\u9669\u6536\u76CA\u5747\u8861\uFF0C\u9002\u5408\u7A33\u5065\u6295\u8D44\u8005",
1185
+ category: "balanced"
974
1186
  },
975
1187
  {
976
- id: "conservative-01",
977
- name: "Conservative Shield",
978
- shortName: "CON",
979
- color: "#10B981",
980
- scanIntervalMin: 6e4,
981
- // 60-90s between cycles (slower for readability)
982
- scanIntervalMax: 9e4,
983
- tradeFrequency: 0.25,
984
- positionSizeMin: 10,
985
- positionSizeMax: 20,
986
- leverageMin: 2,
987
- leverageMax: 5,
988
- primaryIndicators: ["Bollinger", "Volume"],
989
- riskTolerance: "low",
990
- preferredPairs: ["BTC/USDT", "ETH/USDT"],
991
- rsiBias: 45
1188
+ id: "smart-rebalance-01",
1189
+ name: "Smart Rebalance",
1190
+ shortName: "SRB",
1191
+ color: "#06B6D4",
1192
+ scanIntervalMin: 5e4,
1193
+ scanIntervalMax: 75e3,
1194
+ tradeFrequency: 0.35,
1195
+ positionSizeMin: 12,
1196
+ positionSizeMax: 30,
1197
+ leverageMin: 3,
1198
+ leverageMax: 8,
1199
+ primaryIndicators: ["RSI", "EMA", "Volume"],
1200
+ riskTolerance: "medium",
1201
+ preferredPairs: ["BTC/USDT", "ETH/USDT", "BNB/USDT", "SOL/USDT"],
1202
+ rsiBias: 50,
1203
+ tier: "standard",
1204
+ dailyYieldMin: 0.45,
1205
+ dailyYieldMax: 0.7,
1206
+ description: "\u667A\u80FD\u518D\u5E73\u8861\u7B56\u7565\uFF0C\u52A8\u6001\u8C03\u6574\u6301\u4ED3\uFF0C\u4F18\u5316\u6536\u76CA",
1207
+ category: "balanced"
992
1208
  },
1209
+ // ═══════════════════════════════════════════════════════════════════════════
1210
+ // GROWTH STRATEGIES (成长型) - Higher risk, higher returns
1211
+ // ═══════════════════════════════════════════════════════════════════════════
993
1212
  {
994
- id: "aggressive-01",
1213
+ id: "growth-momentum-01",
1214
+ name: "Growth Momentum",
1215
+ shortName: "GRO",
1216
+ color: "#8B5CF6",
1217
+ scanIntervalMin: 4e4,
1218
+ scanIntervalMax: 6e4,
1219
+ tradeFrequency: 0.45,
1220
+ positionSizeMin: 20,
1221
+ positionSizeMax: 40,
1222
+ leverageMin: 5,
1223
+ leverageMax: 12,
1224
+ primaryIndicators: ["RSI", "MACD", "EMA"],
1225
+ riskTolerance: "medium",
1226
+ preferredPairs: ["BTC/USDT", "ETH/USDT", "SOL/USDT", "AVAX/USDT"],
1227
+ rsiBias: 52,
1228
+ tier: "premium",
1229
+ dailyYieldMin: 0.6,
1230
+ dailyYieldMax: 0.95,
1231
+ description: "\u6210\u957F\u52A8\u91CF\u7B56\u7565\uFF0C\u8FFD\u6C42\u8F83\u9AD8\u6536\u76CA\uFF0C\u9002\u5408\u6709\u7ECF\u9A8C\u6295\u8D44\u8005",
1232
+ category: "growth"
1233
+ },
1234
+ {
1235
+ id: "trend-hunter-01",
1236
+ name: "Trend Hunter",
1237
+ shortName: "TRH",
1238
+ color: "#EC4899",
1239
+ scanIntervalMin: 38e3,
1240
+ scanIntervalMax: 55e3,
1241
+ tradeFrequency: 0.48,
1242
+ positionSizeMin: 22,
1243
+ positionSizeMax: 42,
1244
+ leverageMin: 5,
1245
+ leverageMax: 15,
1246
+ primaryIndicators: ["EMA", "MACD", "Volume", "Bollinger"],
1247
+ riskTolerance: "medium",
1248
+ preferredPairs: ["BTC/USDT", "ETH/USDT", "SOL/USDT", "ARB/USDT", "OP/USDT"],
1249
+ rsiBias: 53,
1250
+ tier: "premium",
1251
+ dailyYieldMin: 0.65,
1252
+ dailyYieldMax: 1,
1253
+ description: "\u8D8B\u52BF\u730E\u624B\u7B56\u7565\uFF0C\u6355\u6349\u5E02\u573A\u8D8B\u52BF\uFF0C\u8FFD\u6C42\u8D85\u989D\u6536\u76CA",
1254
+ category: "growth"
1255
+ },
1256
+ // ═══════════════════════════════════════════════════════════════════════════
1257
+ // AGGRESSIVE STRATEGIES (激进型) - High risk, high returns
1258
+ // ═══════════════════════════════════════════════════════════════════════════
1259
+ {
1260
+ id: "aggressive-momentum-01",
995
1261
  name: "Aggressive Momentum",
996
1262
  shortName: "AGG",
997
1263
  color: "#EF4444",
998
1264
  scanIntervalMin: 35e3,
999
- // 35-55s between cycles (slower for readability)
1000
1265
  scanIntervalMax: 55e3,
1001
1266
  tradeFrequency: 0.5,
1002
1267
  positionSizeMin: 25,
@@ -1006,7 +1271,103 @@ var init_BotSimulationEngine = __esm({
1006
1271
  primaryIndicators: ["RSI", "MACD", "EMA", "Volume"],
1007
1272
  riskTolerance: "high",
1008
1273
  preferredPairs: ["BTC/USDT", "ETH/USDT", "SOL/USDT", "DOGE/USDT", "AVAX/USDT"],
1009
- rsiBias: 55
1274
+ rsiBias: 55,
1275
+ tier: "elite",
1276
+ dailyYieldMin: 0.85,
1277
+ dailyYieldMax: 1.4,
1278
+ description: "\u6FC0\u8FDB\u52A8\u91CF\u7B56\u7565\uFF0C\u9AD8\u98CE\u9669\u9AD8\u6536\u76CA\uFF0C\u9002\u5408\u98CE\u9669\u627F\u53D7\u80FD\u529B\u5F3A\u7684\u6295\u8D44\u8005",
1279
+ category: "aggressive"
1280
+ },
1281
+ {
1282
+ id: "leverage-maximizer-01",
1283
+ name: "Leverage Maximizer",
1284
+ shortName: "LEV",
1285
+ color: "#F97316",
1286
+ scanIntervalMin: 3e4,
1287
+ scanIntervalMax: 5e4,
1288
+ tradeFrequency: 0.55,
1289
+ positionSizeMin: 30,
1290
+ positionSizeMax: 55,
1291
+ leverageMin: 10,
1292
+ leverageMax: 25,
1293
+ primaryIndicators: ["RSI", "MACD", "EMA", "Volume", "Bollinger"],
1294
+ riskTolerance: "high",
1295
+ preferredPairs: ["BTC/USDT", "ETH/USDT", "SOL/USDT", "DOGE/USDT", "AVAX/USDT", "ARB/USDT"],
1296
+ rsiBias: 55,
1297
+ tier: "elite",
1298
+ dailyYieldMin: 1,
1299
+ dailyYieldMax: 1.8,
1300
+ description: "\u6760\u6746\u6700\u5927\u5316\u7B56\u7565\uFF0C\u8FFD\u6C42\u6781\u81F4\u6536\u76CA\uFF0C\u9700\u8981\u4E13\u4E1A\u6295\u8D44\u7ECF\u9A8C",
1301
+ category: "aggressive"
1302
+ },
1303
+ // ═══════════════════════════════════════════════════════════════════════════
1304
+ // QUANTITATIVE STRATEGIES (量化型) - AI-driven, advanced algorithms
1305
+ // ═══════════════════════════════════════════════════════════════════════════
1306
+ {
1307
+ id: "ai-quant-alpha-01",
1308
+ name: "AI Quant Alpha",
1309
+ shortName: "AQA",
1310
+ color: "#A855F7",
1311
+ scanIntervalMin: 42e3,
1312
+ scanIntervalMax: 65e3,
1313
+ tradeFrequency: 0.42,
1314
+ positionSizeMin: 18,
1315
+ positionSizeMax: 38,
1316
+ leverageMin: 4,
1317
+ leverageMax: 12,
1318
+ primaryIndicators: ["RSI", "MACD", "EMA", "Volume", "Bollinger"],
1319
+ riskTolerance: "medium",
1320
+ preferredPairs: ["BTC/USDT", "ETH/USDT", "SOL/USDT", "BNB/USDT"],
1321
+ rsiBias: 51,
1322
+ tier: "premium",
1323
+ dailyYieldMin: 0.7,
1324
+ dailyYieldMax: 1.1,
1325
+ description: "AI\u91CF\u5316Alpha\u7B56\u7565\uFF0C\u673A\u5668\u5B66\u4E60\u9A71\u52A8\uFF0C\u667A\u80FD\u98CE\u63A7",
1326
+ category: "quantitative"
1327
+ },
1328
+ {
1329
+ id: "neural-trader-01",
1330
+ name: "Neural Trader",
1331
+ shortName: "NRT",
1332
+ color: "#14B8A6",
1333
+ scanIntervalMin: 4e4,
1334
+ scanIntervalMax: 62e3,
1335
+ tradeFrequency: 0.44,
1336
+ positionSizeMin: 20,
1337
+ positionSizeMax: 40,
1338
+ leverageMin: 5,
1339
+ leverageMax: 15,
1340
+ primaryIndicators: ["RSI", "MACD", "EMA", "Volume", "Bollinger"],
1341
+ riskTolerance: "medium",
1342
+ preferredPairs: ["BTC/USDT", "ETH/USDT", "SOL/USDT", "AVAX/USDT", "LINK/USDT"],
1343
+ rsiBias: 52,
1344
+ tier: "elite",
1345
+ dailyYieldMin: 0.8,
1346
+ dailyYieldMax: 1.25,
1347
+ description: "\u795E\u7ECF\u7F51\u7EDC\u4EA4\u6613\u7B56\u7565\uFF0C\u6DF1\u5EA6\u5B66\u4E60\u6A21\u578B\uFF0C\u81EA\u9002\u5E94\u5E02\u573A",
1348
+ category: "quantitative"
1349
+ },
1350
+ {
1351
+ id: "quantum-edge-01",
1352
+ name: "Quantum Edge",
1353
+ shortName: "QTE",
1354
+ color: "#6366F1",
1355
+ scanIntervalMin: 35e3,
1356
+ scanIntervalMax: 55e3,
1357
+ tradeFrequency: 0.5,
1358
+ positionSizeMin: 25,
1359
+ positionSizeMax: 50,
1360
+ leverageMin: 8,
1361
+ leverageMax: 20,
1362
+ primaryIndicators: ["RSI", "MACD", "EMA", "Volume", "Bollinger"],
1363
+ riskTolerance: "high",
1364
+ preferredPairs: ["BTC/USDT", "ETH/USDT", "SOL/USDT", "AVAX/USDT", "ARB/USDT", "OP/USDT"],
1365
+ rsiBias: 54,
1366
+ tier: "vip",
1367
+ dailyYieldMin: 1.2,
1368
+ dailyYieldMax: 2,
1369
+ description: "VIP\u91CF\u5B50\u4F18\u52BF\u7B56\u7565\uFF0C\u9876\u7EA7AI\u7B97\u6CD5\uFF0C\u6781\u81F4\u6536\u76CA\u8FFD\u6C42",
1370
+ category: "quantitative"
1010
1371
  }
1011
1372
  ];
1012
1373
  PAIR_PRICES = {