본문 바로가기

VBA/Code

[VBA] ColorAverage Basic 파일 다운로드 함수 사용방법 바로가기 VBA Code Function ColorAverage(AverageRange As range, colorRange As range, Optional colorType As Boolean = False) As Double Application.Volatile True On Error Resume Next Dim rng As range, result As Double, cnt As Long If colorType Then For Each rng In AverageRange If rng.Font.ColorIndex = colorRange.Font.ColorIndex Then result = result + rng.Value: cnt = cnt + 1 Next ..
[VBA] ColorCount Basic 파일 다운로드 함수 사용방법 바로가기 VBA Code Function ColorCount(countRange As range, colorRange As range, Optional colorType As Boolean = False) As Long Application.Volatile True On Error Resume Next Dim rng As range, result As Double If colorType Then For Each rng In countRange If rng.Font.Color = colorRange.Font.Color Then result = result + 1 Next rng Else For Each rng In countRange If rng.Interior.Co..
[VBA] ColorSum Basic 파일 다운로드 함수 사용방법 바로가기 VBA Code Function ColorSum(sumRange As range, colorRange As range, Optional colorType As Boolean = False) As Double Application.Volatile True On Error Resume Next Dim rng As range, result As Double If colorType Then For Each rng In sumRange If rng.Font.ColorIndex = colorRange.Font.ColorIndex Then result = result + rng.Value Next rng Else For Each rng In sumRange If rng..
[VBA] 업비트 Open API>입금>개별 입금 주소 조회 API Reference HTTP Method API URL GET https://api.upbit.com/v1/deposits/coin_address QUERY PARAMS 필드명 필수 여부 설명 타입 currency Y Currency symbol String HEADERS 헤더명 필수 여부 설명 타입 Authorization Y Authorization token (JWT) String Response 필드명 설명 타입 currency 화폐를 의미하는 영문 대문자 코드 String deposit_address 입금 주소 String secondary_address 2차 입금 주소 String VBA Code Sub Upbit_Deposits_CoinAddress() Const ACCESS_KEY A..
[VBA] 업비트 Open API>입금>전체 입금 주소 조회 API Reference HTTP Method API URL GET https://api.upbit.com/v1/deposits/coin_addresses HEADERS 헤더명 필수 여부 설명 타입 Authorization Y Authorization token (JWT) String Response 필드명 설명 타입 currency 화폐를 의미하는 영문 대문자 코드 String deposit_address 입금 주소 String secondary_address 2차 입금 주소 String VBA Code Sub Upbit_Deposits_CoinAddresses() Const ACCESS_KEY As String = "UPBIT_OPEN_API_ACCESS_KEY" Const SECRET_KEY As ..
[VBA] 업비트 Open API>입금>입금 주소 생성 요청 API Reference HTTP Method API URL POST https://api.upbit.com/v1/deposits/generate_coin_address BODY PARAMS 필드명 필수 여부 설명 타입 currency Y Currency symbol String HEADERS 헤더명 필수 여부 설명 타입 Authorization Y Authorization token (JWT) String Request Parameters 필드명 설명 타입 currency Currency 코드 String Response1 필드명 설명 타입 success 요청 성공 여부 Boolean message 요청 결과에 대한 메세지 String Response2 필드명 설명 타입 currency 화폐를 의미하는..
[VBA] 업비트 Open API>입금>개별 입금 조회 API Reference HTTP Method API URL GET https://api.upbit.com/v1/deposit QUERY PARAMS 필드명 필수 여부 설명 타입 uuid N 개별 입금의 UUID String txid N 개별 입금의 TXID String currency N Currency 코드 String HEADERS 헤더명 필수 여부 설명 타입 Authorization Y Authorization token (JWT) String Request Parameters 필드명 설명 타입 uuid 입금 UUID String txid 입금 TXID String currency Currency 코드 String Response 필드명 설명 타입 type 입출금 종류 String uuid 입금의..
[VBA] 업비트 Open API>입금>입금 리스트 조회 API Reference HTTP Method API URL GET https://api.upbit.com/v1/deposits QUERY PARAMS 필드명 필수 여부 설명 타입 currency N Currency 코드 String state N 입금 상태 String uuids N 입금 UUID의 목록 Array of Strings txids N 입금 TXID의 목록 Array of Strings limit N 페이지당 개수 Integer page N 페이지 번호 Integer order_by N 정렬 방식 String HEADERS 헤더명 필수 여부 설명 타입 Authorization Y Authorization token (JWT) String Request Parameters 필드명 설명 타입 ..
반응형