雪球调仓时输入小数

雪球调仓时可以输入小数

目前为 2023-07-08 提交的版本。查看 最新版本

// ==UserScript==
// @name         雪球调仓时输入小数
// @namespace    http://xueqiu.com/
// @version      0.1.2
// @description  雪球调仓时可以输入小数
// @author       xiaolin
// @match        https://xueqiu.com/*
// @grant        none
// @license MIT
// ==/UserScript==
;(function() {
	function blurHandler(event) {
		const length = $('input.weight').length
		let cash = 10000
		for (let i = 0; i < length; i++) {
			const weight = Number($($('input.weight')[i]).val().replace('%', ''))
			if (SNB.cubeData[i].weight != weight) {
				SNB.cubeData[i].proactive = true
				SNB.cubeData[i].weight = weight
			}
			cash -= weight * 100
		}
		cash = +(cash / 100).toFixed(2)
		$('.cash .stock-weight input').val(cash)
		$('.cash .stock-weight span.weight').text(cash + '%')
		SNB.cashWeight = cash
		event.stopPropagation()
		return false
	}

	setInterval(function(){
   		$('input.weight').off('blur').blur(blurHandler)
   	}, 50)
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址