diff --git a/README.en.md b/README.en.md
new file mode 100644
index 0000000..4f0a5ac
--- /dev/null
+++ b/README.en.md
@@ -0,0 +1,211 @@
+
+
+
+
+ +yarn add react-native-reanimated +yarn add react-native-gesture-handler +yarn add @shopify/react-native-skia +yarn add react-native-graph ++ +## Usage + +```jsx +function App() { + const priceHistory = usePriceHistory('ethereum') + + return
+
+Whether to animate between data changes.
+
+Animations are ran using the [Skia animation system](https://shopify.github.io/react-native-skia/docs/animations/animations) and are fully natively interpolated to ensure best possible performance.
+
+If `animated` is `false`, a light-weight implementation of the graph renderer will be used, which is optimal for displaying a lot of graphs in large lists.
+
+Example:
+
+```jsx
+
+
+Whether to enable the pan gesture.
+
+> Requires `animated` to be `true`.
+
+There are three events fired when the user interacts with the graph:
+
+1. `onGestureStart`: Fired once the user presses and holds down on the graph. The pan gesture _activates_.
+2. `onPointSelected`: Fired for each point the user pans through. You can use this event to update labels or highlight selection in the graph.
+3. `onGestureEnd`: Fired once the user releases his finger and the pan gesture _deactivates_.
+
+The pan gesture can be configured using these props:
+
+1. `panGestureDelay`: Set delay for the pan gesture to activate. Set to `0` to start immediately after touch. Defaults to `300`.
+
+Example:
+
+```jsx
+
+
+Used to render labels above or below the Graph.
+
+> Requires `animated` to be `true`.
+
+Usually this is used to render the maximum and minimum values of the Graph. You can get the maximum and minimum values from your graph points array, and smoothly animate the labels on the X axis accordingly.
+
+Example:
+
+```jsx
+
+
+Used to define a range for the graph canvas
+
+This range has to be bigger than the span of the provided data points. This feature can be used, e.g. if the graph should show a fixed timeframe, whether there's data for that period or not.
+
+
+
+Used to render the selection dot.
+
+> Requires `animated` and `enablePanGesture` to be `true`.
+
+If `SelectionDot` is missing or `undefined`, a default one is provided with an outer ring and light shadow.
+
+Example:
+
+```jsx
+
+
+**react-native-graph** is sponsored by [Pink Panda](https://pinkpanda.io).
+
+Download the Pink Panda mobile app to see react-native-graph in action!
+
+## Community Discord
+
+[Join the Margelo Community Discord](https://discord.gg/6CSHz2qAvA) to chat about react-native-graph or other Margelo libraries.
+
+## Adopting at scale
+
+react-native-graph was built at Margelo, an elite app development agency. For enterprise support or other business inquiries, contact us at hello@margelo.com!
+
+## Thanks
+
+Special thanks to [William Candillon](https://github.com/wcandillon) and [Christian Falch](https://github.com/chrfalch) for their amazing help and support for React Native Skia ❤️