Install
openclaw skills install content-stockAnalyze themes/news for stock selection
openclaw skills install content-stock此技能基于关键词、新闻标题或报告进行题材选股分析。
设置环境变量 EASYALPHA_API_KEY,然后调用 get_content_stock(request) 函数,其中 request 是包含 query 和 type 的对象。
const { get_content_stock } = require('./content_stock');
async function main() {
const req = { query: "新能源题材", type: "deep" };
for await (const line of get_content_stock(req)) {
process.stdout.write(line);
}
}
main();
� �