sellCallOptionLimit

fun sellCallOptionLimit(symbol: String, limitPrice: Float, strikePrice: Float, quantity: Int, expiry: ZonedDateTime = OptionsCalendar.nextMonthly(), clientOrderId: String = randomString()): PreviewRequest

Sell a call option using a limit price. Note that selling a call without an offsetting position, aka naked selling, is typically only offered with Level 4 options trading privileges.

Samples

import com.seansoper.batil.OptionsCalendar
import com.seansoper.batil.brokers.etrade.auth.Authorization
import com.seansoper.batil.brokers.etrade.services.Accounts
import com.seansoper.batil.brokers.etrade.services.Alerts
import com.seansoper.batil.brokers.etrade.services.Market
import com.seansoper.batil.brokers.etrade.services.Orders
import com.seansoper.batil.brokers.etrade.services.TransactionSortOrder
import com.seansoper.batil.brokers.etrade.services.orderPreview.buyButterflyCalls
import com.seansoper.batil.brokers.etrade.services.orderPreview.buyBuyWrite
import com.seansoper.batil.brokers.etrade.services.orderPreview.buyCallOptionMarket
import com.seansoper.batil.brokers.etrade.services.orderPreview.buyCallSpread
import com.seansoper.batil.brokers.etrade.services.orderPreview.buyCondorPuts
import com.seansoper.batil.brokers.etrade.services.orderPreview.buyEquityLimit
import com.seansoper.batil.brokers.etrade.services.orderPreview.sellCallOptionMarket
import com.seansoper.batil.brokers.etrade.services.orderPreview.sellEquityLimit
import com.seansoper.batil.brokers.etrade.services.orderPreview.sellIronCondor
import com.seansoper.batil.config.ClientConfig
import com.seansoper.batil.config.GlobalConfig
import java.time.LocalDate
import java.time.LocalTime
import java.time.ZoneId
import java.time.ZonedDateTime
import java.util.GregorianCalendar
fun main() { 
   //sampleStart 
   val configuration = GlobalConfig.parse(runtime)
val client = Authorization(configuration, runtime.production, runtime.verbose)
val session = client.renewSession() ?: client.createSession()
val service = Orders(session, runtime.production, runtime.verbose)
val accountIdKey = "ACCOUNT_ID_KEY"
val expiry = ZonedDateTime.of(
    LocalDate.of(2021, 10, 15),
    LocalTime.of(16, 0),
    ZoneId.of("America/New_York")
)

val request = sellCallOptionMarket(
    symbol = "AAPL",
    limitPrice = 5f,
    stopPrice = 2.5f,
    strikePrice = 150f,
    quantity = 1,
    expiry = expiry
)
service.createPreview(accountIdKey, request)?.let {
    println("Preview of Sell to Open order of AAPL--211015C00150000")
    println(it)
} 
   //sampleEnd
}

Parameters

symbol

The market symbol for the security being sold

limitPrice

The highest price at which to buy or the lowest price at which to sell if specified in a limit order

strikePrice

The strike price for the option

quantity

The number of options to sell

expiry

The date the option will expire

clientOrderId

A reference ID generated by the developer that is used to ensure that a duplicate order is not being submitted. This reference ID may be any value of 20 or less alphanumeric characters but must be unique within the account. This field does not appear in any API responses.

Sources

jvm source
Link copied to clipboard