博文

目前显示的是 十二月, 2025的博文

范雅惠價差策略與選擇權理論價格

图片
空頭價差、多頭價差、跨式、勒式 選擇權價差交易策略 清空 賣權put空頭價差 買權call多頭價差 賣權put多頭價差 買權call空頭價差 下跨(買跨)付出權利金 上跨(賣跨)收取權利金付出保證金 買進勒式付出權利金 賣出勒式收取權利金付出保證金 選擇權理論價格:維基百科

范雅惠選擇權價差交易策略

canvas繪圖套件繪製選擇權到期日損益圖 選擇權價差交易策略 清空 賣權put空頭價差 買權call多頭價差 賣權put多頭價差 買權call空頭價差

canvas繪圖套件繪製選擇權到期日損益圖

<style> canvas{border:20px} option{font-size:24px;background:pink;} h1{background-image: linear-gradient(orange, blue);text-align:center;padding:10px;color:white;}</style> <script> function dashed(){ const c = document.getElementById("Options"); const ctx = c.getContext("2d"); ctx.beginPath(); ctx.moveTo(100,0); ctx.lineTo(100,500); ctx.strokeStyle="green"; ctx.setLineDash([10,10]); ctx.lineWidth=1; ctx.stroke(); ctx.beginPath(); ctx.moveTo(200,0); ctx.lineTo(200,500); ctx.strokeStyle="green"; ctx.setLineDash([10,10]); ctx.lineWidth=1; ctx.stroke(); } function putBear(){ const c = document.getElementById("Options"); const ctx = c.getContext("2d"); ctx.reset(); ctx.beginPath(); //開始繪製 ctx.moveTo(100, 0); ctx.lineTo(200, 100); ctx.lineTo(300,100); ctx.font = "24px Arial"; ctx.fillText("買入履約價120的賣權puts",300,50); ctx.strokeStyle = "red"; ctx.lineWidth = 5; ctx.stroke(); ctx.beginPath...