createoffer

NAME
----
createoffer - create offer to buy or sell XMR

SYNOPSIS
--------
createoffer
		--payment-account=<payment-acct-id>
		--direction=<buy|sell>
		--currency-code=<eur|usd>
		--market-price-margin=<percent> | --fixed-price=<btc-price>
		--amount=<btc-amount>
		--min-amount=<btc-amount>
		--security-deposit=<percent>
		[--fee-currency=<btc>]

DESCRIPTION
-----------
Create and place an offer to buy or sell XMR using a fiat account.

OPTIONS
-------
--payment-account
		The ID of the fiat payment account used to send or receive funds during the trade.

--direction
		The direction of the trade (BUY or SELL).

--currency-code
		The three letter code for the fiat used to buy or sell XMR, e.g., EUR, USD, BRL, ...

--market-price-margin
		The % above or below market XMR price, e.g., 1.00 (1%).
		If --market-price-margin is not present, --fixed-price must be.

--fixed-price
		The fixed XMR price in fiat used to buy or sell XMR, e.g., 34000 (USD).
		If --fixed-price is not present, --market-price-margin must be.

--amount
		The amount of XMR to buy or sell, e.g., 0.125.

--min-amount
		The minimum amount of XMR to buy or sell, e.g., 0.006.
		If --min-amount is not present, it defaults to the --amount value.

--security-deposit
		The percentage of the XMR amount being traded for the security deposit, e.g., 60.0 (60%).

--fee-currency
		The wallet currency used to pay the Haveno trade maker fee (XMR).  Default is XMR

EXAMPLES
--------

To create a BUY 0.125 XMR with EUR offer
	at the current market price,
	using a payment account with ID 7413d263-225a-4f1b-837a-1e3094dc0d77,
	putting up a 30 percent security deposit,
	and paying the Haveno maker trading fee in XMR:
$ ./haveno-cli --password=xyz --port=9998 createoffer --payment-account=7413d263-225a-4f1b-837a-1e3094dc0d77 \
    --direction=buy \
    --currency-code=eur \
    --amount=0.125 \
    --market-price-margin=0.00 \
    --security-deposit=30.0 \
    --fee-currency=xmr

To create a SELL 0.006 XMR for USD offer
	at a fixed price of 40,000 USD,
	using a payment account with ID 7413d263-225a-4f1b-837a-1e3094dc0d77,
	putting up a 25 percent security deposit,
	and paying the Haveno maker trading fee in XMR:
$ ./haveno-cli --password=xyz --port=9998 createoffer --payment-account=7413d263-225a-4f1b-837a-1e3094dc0d77 \
    --direction=sell \
    --currency-code=usd \
    --amount=0.006 \
    --fixed-price=40000 \
    --security-deposit=25.0 \
    --fee-currency=xmr
