-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bug: <title> #855
Labels
bug
Something isn't working
Comments
请问是在什么场景下遇到的?(模型回测、账户回放、或者其他) |
我现在完全无法正常使用https://y.ntnl.io/,打开界面是空白的 右下角点登陆也无法显示任何东西 启动里的 login 也不行 界面完全无法恢复,只能启动copilot。。。。 |
明白你的意思,这是因为 Yuan 更新了一个概念叫 发行版 |
非常感谢您的回复,如果可以的话,能不能帮我 做个本地部署这个版本的 教程,我想要的 很简单 就是 测试策略的可行性,效果,然后我自己 按照策略 手动交易。Copilot 是一个非常好的策略生成器。 可以的话 我想自己花钱使用自己的。
你们现在不更新了 ,有点可惜
…------------------ 原始邮件 ------------------
发件人: "Zheng ***@***.***>;
发送时间: 2024年10月26日(星期六) 晚上9:54
收件人: ***@***.***>;
抄送: ***@***.***>; ***@***.***>;
主题: Re: [No-Trade-No-Life/Yuan] bug: <title> (Issue #855)
明白你的意思,这是因为 Yuan 更新了一个概念叫 发行版
我们为了更广泛的场景,删减了很多默认的功能,如果你有需要的话,可以针对特定的功能给你配置一个默认的发行版。
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
你的意思是,你想自己部署一个 Copilot AIGC 策略生成器,然后走自己的选择的大模型的接口是吗? |
非常感谢。我加了VX叫haolin,可不可以加一下你的VX 我有个策略 XAUUSD的
,低周期15分钟 高周期1小时, 能达到6W的收益。。。。haolin说 应该是BUG 策略好像透视了,不知道行不行。我的VX是 15349973399.我给你我跑起来的源码: XAUUSD 15分钟 XAUUSD 1小时 高低周期。
//-----------------------------------------------------------------------------------------------------
import { useParamOHLC, useSinglePosition, useCCI, useATR } from ***@***.***";
export default () => {
const { product_id, close: C, high, low } = useParamOHLC("低周期");
const { high: highDay, low: lowDay, close: closeDay } = useParamOHLC("高周期");
const idxDay = closeDay.length - 2;
const idx = C.length - 1;
const cciFast = useCCI(high, low, C, 18);
const cciSlow = useCCI(high, low, C, 54);
const { ATR: atr108 } = useATR(highDay, lowDay, closeDay, 108);
const 中心价位 = (highDay[idxDay] + lowDay[idxDay] + closeDay[idxDay]) / 3;
const 突破买入价 = highDay[idxDay] + 2 * 中心价位 - 2 * lowDay[idxDay];
const 观察卖出价 = 中心价位 + highDay[idxDay] - lowDay[idxDay];
const 反转卖出价 = 2 * 中心价位 - lowDay[idxDay];
const 反转买入价 = 2 * 中心价位 - highDay[idxDay];
const 观察买入价 = 中心价位 - (highDay[idxDay] - lowDay[idxDay]);
const 突破卖出价 = lowDay[idxDay] - 2 * (highDay[idxDay] - 中心价位);
const pL = useSinglePosition(product_id, PositionVariant.LONG);
const pS = useSinglePosition(product_id, PositionVariant.SHORT);
useEffect(() => {
if (idxDay < 108) return; // 确保ATR有足够的数据
if (pL.volume === 0 && pS.volume === 0) {
if (cciFast[idx] > 100 && C[idx] > 突破买入价) {
pL.setTargetVolume(1);
} else if (cciFast[idx] < -100 && C[idx] < 突破卖出价) {
pS.setTargetVolume(1);
}
}
if (pL.volume > 0) {
if (C[idx] < 反转卖出价 || (cciFast[idx] < cciSlow[idx] && C[idx] < pL.entryPrice - atr108[idxDay])) {
pL.setTargetVolume(0);
}
}
if (pS.volume > 0) {
if (C[idx] > 反转买入价 || (cciFast[idx] > cciSlow[idx] && C[idx] > pS.entryPrice + atr108[idxDay])) {
pS.setTargetVolume(0);
}
}
}, [idx, idxDay]);
};
//---------------------------------------------------------------------------------------------------------------------------------------
看一下这个策略是不是透视了?
…------------------ 原始邮件 ------------------
发件人: "No-Trade-No-Life/Yuan" ***@***.***>;
发送时间: 2024年10月26日(星期六) 晚上9:54
***@***.***>;
***@***.******@***.***>;
主题: Re: [No-Trade-No-Life/Yuan] bug: <title> (Issue #855)
明白你的意思,这是因为 Yuan 更新了一个概念叫 发行版
我们为了更广泛的场景,删减了很多默认的功能,如果你有需要的话,可以针对特定的功能给你配置一个默认的发行版。
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
渲染错误 Error: Assertion failed: data must be asc ordered by time, index=1, time=NaN, prev time=NaN
很抱歉,页面在渲染过程中发生了错误。
任何的渲染错误都是非预期的。
请将错误信息报告给 Yuan 的维护者,以便我们及时修复此问题。
Error: Assertion failed: data must be asc ordered by time, index=1, time=NaN, prev time=NaN
at assert (https://y.ntnl.io/assets/index.2f007ab7.js:1429:948)
at checkItemsAreOrdered (https://y.ntnl.io/assets/index.2f007ab7.js:1442:291233)
at e1.setMarkers (https://y.ntnl.io/assets/index.2f007ab7.js:1442:295085)
at https://y.ntnl.io/assets/index.2f007ab7.js:1442:322682
at Rj (https://y.ntnl.io/assets/index.2f007ab7.js:44:27079)
at Ik (https://y.ntnl.io/assets/index.2f007ab7.js:44:47457)
at https://y.ntnl.io/assets/index.2f007ab7.js:44:45520
at w1 (https://y.ntnl.io/assets/index.2f007ab7.js:29:1729)
at MessagePort.P1 (https://y.ntnl.io/assets/index.2f007ab7.js:29:2141)
请将错误信息报告给 Yuan 的维护者,以便我们及时修复此问题。错误:断言失败:数据必须按时间、index=1、time=NaN、prev time=NaN 排序 at 断言 (https://y.ntnl.io/assets/index.2f007ab7.js:1429:948) 在 checkItemsAreOrdered (https://y.ntnl.io/assets/index.2f007ab7.js:1442:291233) 在 e1.setMarkers 处 (https://y.ntnl.io/assets/index.2f007ab7.js:1442:295085) 在 https://y.ntnl.io/assets/index.2f007ab7.js:1442:322682 在 Rj (https://y.ntnl.io/assets/index.2f007ab7.js:44:27079) 在 Ik (https://y.ntnl.io/assets/index.2f007ab7.js:44:47457) 在 https://y.ntnl.io/assets/index.2f007ab7.js:44:45520 在 W1 (https://y.ntnl.io/assets/index.2f007ab7.js:29:1729) 在 MessagePort.P1 (https://y.ntnl.io/assets/index.2f007ab7.js:29:2141)
To Reproduce
1.无法登陆 ,2.无法看走势图
Expected behavior
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: