mirror of
				https://github.com/JKorf/CryptoExchange.Net
				synced 2025-10-31 10:27:48 +00:00 
			
		
		
		
	commit 90f285d7f6bcd926ce9ca3d5832b1d70a5eae6ab
Author: JKorf <jankorf91@gmail.com>
Date:   Sun Jun 25 19:51:12 2023 +0200
    Docs
commit 72187035c703d1402b37bd2f4c3e066706f28d67
Author: JKorf <jankorf91@gmail.com>
Date:   Sat Jun 24 16:02:53 2023 +0200
    docs
commit 8411977292f1fb0b6e0705b1ad675b79a5311d90
Author: JKorf <jankorf91@gmail.com>
Date:   Fri Jun 23 18:25:15 2023 +0200
    wip
commit cb7d33aad5d2751104c8b8a6c6eadbf0d36b672c
Author: JKorf <jankorf91@gmail.com>
Date:   Fri Jun 2 19:26:26 2023 +0200
    wip
commit 4359a2d05ea1141cff516dab18f364a6ca854e18
Author: JKorf <jankorf91@gmail.com>
Date:   Wed May 31 20:51:36 2023 +0200
    wip
commit c6adb1b2f728d143f6bd667139c619581122a3c9
Author: JKorf <jankorf91@gmail.com>
Date:   Mon May 1 21:13:47 2023 +0200
    wip
commit 7fee733f82fa6ff574030452f0955c9e817647dd
Author: JKorf <jankorf91@gmail.com>
Date:   Thu Apr 27 13:02:56 2023 +0200
    wip
commit f8057313ffc9b0c31effcda71d35d105ea390971
Author: JKorf <jankorf91@gmail.com>
Date:   Mon Apr 17 21:37:51 2023 +0200
    wip
		
	
			
		
			
				
	
	
		
			28 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| ---
 | |
| title: Glossary
 | |
| nav_order: 11
 | |
| ---
 | |
| ## Terms and definitions
 | |
| 
 | |
| |Definition|Synonyms|Meaning|
 | |
| |----------|--------|-------|
 | |
| |Symbol|Market|An asset pair, for example `BTC-ETH`|
 | |
| |Asset|Currency, Coin|A coin for which you can hold balance and which makes up Symbols. For example both `BTC`, `ETH` or `USD`|
 | |
| |Trade|Execution, fill|The (partial) execution of an order. Orders can have multiple trades|
 | |
| |Quantity|Amount, Size|The amount of asset|
 | |
| |Fee|Commission|The fee paid for an order or trade|
 | |
| |Kline|Candlestick, OHLC|K-line data, used for candlestick charts. Contains Open/High/Low/Close/Volume|
 | |
| |KlineInterval|The time period of a single kline|
 | |
| |Open order|Active order, Unexecuted order|An order which has not yet been fully filled|
 | |
| |Closed order|Completed order, executed order|An order which is no longer active. Can be canceled or fully filled|
 | |
| |Network|Chain|The network of an asset. For example `ETH` allows multiple networks like `ERC20` and `BEP2`|
 | |
| |Order book|Market depth|A list of (the top rows of) the current best bids and asks|
 | |
| |Ticker|Stats|Statistics over the last 24 hours|
 | |
| |Client implementation|Library|An implementation of the `CrytpoExchange.Net` library. For example `Binance.Net` or `Bybit.Net`|
 | |
| 
 | |
| ### Other naming conventions
 | |
| #### PlaceOrderAsync
 | |
| Methods for creating an order are always named `PlaceOrderAsync`, with and optional additional name for the type of order, for example `PlaceMarginOrderAsync`.
 | |
| 
 | |
| #### GetOrdersAsync/GetOpenOrdersAsync/GetClosedOrdersAsync
 | |
| `GetOpenOrdersAsync` only retrieves orders which are still active, `GetClosedOrdersAsync` only retrieves orders which are canceled/closed. `GetOrdersAsync` retrieves both open and closed orders. |