> For the complete documentation index, see [llms.txt](https://docs.defisaver.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.defisaver.com/triggers/liquityv2/liquityv2quotepricetrigger.md).

# LiquityV2QuotePriceTrigger

### Description

Trigger contract that verifies if price of collateral on a chosen LiquityV2 market went over or under a certain threshold

### Trigger ID

`0xbde64ad9`

### SDK Action

```ts
const liquityV2QuotePriceTrigger = new dfs.triggers.LiquityV2QuotePriceTrigger(
    market,
    price,
    state
);
```

### Subscription Parameters

```solidity
/// @param market address of the market where the trove is
/// @param price threshold price that represents the triggerable point
/// @param state represents if we want the current state to be higher or lower than ratio param
struct SubParams {
    address market;
    uint256 price;
    uint8 state;
}
```

### Calldata Parameters

```solidity
None
```

### IsChangeable

`false`
