- u = pos.purse.unit # 50 ## pixels per dollar - strategy = pos.strategy - nearest_strike = pos.stock.last.round - stock = pos.stock .StockCoordinatesW .StockCoordinates{ style: "height: #{@position.purse.height}px " } .grid= render "/iro/stocks/grid_#{pos.strategy.long_or_short}", stock: stock, position: pos .Origin{ style: "left: #{ ( nearest_strike - pos.stock.last )* u}px" } .label Last: #{pos.stock.last } - amnt = pos.next_gain_loss_amount - border = amnt >= 0 ? "#{amnt * u}px solid green" : "#{amnt * -1 * u}px solid red" - width = "#{ ( pos.outer_strike - pos.inner_strike ) * u}px" - left = "#{ ( pos.stock.last - pos.outer_strike ) * u}px" .PositionW{ class: pos.strategy.kind, style: "width: #{width}; left: #{left}; border-right: #{border};" } .Position .MaxGain{ style: "width: #{pos.max_gain * u}px" } .select= button_to 'select', prepare2_position_path(pos.id) .c