劉任昌產業分析雲端運算網路服務
空頭價差、多頭價差、跨式、勒式 選擇權價差交易策略 清空 賣權put空頭價差 買權call多頭價差 賣權put多頭價差 買權call空頭價差 下跨(買跨)付出權利金 上跨(賣跨)收取權利金付出保證金 買進勒式付出權利金 賣出勒式收取權利金付出保證金 教學影片 選擇權理論價格:維基百科 在HTML模式下貼上以下的程式碼 <style> canvas{border:20px} option{font-size:24px;background:yellow;} h1{background-image: linear-gradient(black, red);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.l...